mirror of
https://git.netzspielplatz.de/docker-multiarch/flarum.git
synced 2025-11-08 20:39:31 +00:00
initial commit
This commit is contained in:
commit
50cabe84c0
2 changed files with 44 additions and 0 deletions
20
chown-fix.patch
Normal file
20
chown-fix.patch
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
diff --git a/rootfs/usr/local/bin/startup b/rootfs/usr/local/bin/startup
|
||||
index b8ee399..55a8882 100644
|
||||
--- a/rootfs/usr/local/bin/startup
|
||||
+++ b/rootfs/usr/local/bin/startup
|
||||
@@ -23,12 +23,11 @@ sed -i "s/<OPCACHE_MEMORY_LIMIT>/${OPCACHE_MEMORY_LIMIT}/g" /etc/php8/conf.d/00_
|
||||
# Set permissions for /flarum folder
|
||||
echo "[INFO] Setting folder permissions"
|
||||
for folder in /etc/s6.d /run/php /var/log /var/lib/nginx; do
|
||||
- find ${folder} ! -user "${UID}" -exec chown -h "${UID}:${GID}" {} \+
|
||||
- find ${folder} ! -group "${GID}" -exec chown -h "${UID}:${GID}" {} \+
|
||||
+ echo {$folder}
|
||||
+ chown -R "${UID}:${GID}" ${folder}
|
||||
done
|
||||
|
||||
-find /flarum ! -user "${UID}" -exec chown "${UID}:${GID}" {} \+
|
||||
-find /flarum ! -group "${GID}" -exec chown "${UID}:${GID}" {} \+
|
||||
+chown -R "${UID}:${GID}" /flarum
|
||||
|
||||
# Set log output to STDOUT if wanted (LOG_TO_STDOUT=true)
|
||||
if [ "${LOG_TO_STDOUT}" = true ]; then
|
||||
Loading…
Add table
Add a link
Reference in a new issue