summaryrefslogtreecommitdiff
path: root/http.Dockerfile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-25 17:51:59 +0100
committerJoe Carstairs <me@joeac.net>2026-06-25 17:51:59 +0100
commitc3cabed6e70126d1ffa6f056d087da138a8646b3 (patch)
tree75206f71a1f9df47f92a8dcac970e5049971b3af /http.Dockerfile
parentaa76b5ad792108c61e8cec1f98e6ba5e68900c72 (diff)
db is g+rw in http.Dockerfile
Diffstat (limited to 'http.Dockerfile')
-rw-r--r--http.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.Dockerfile b/http.Dockerfile
index 3ff404f..9024461 100644
--- a/http.Dockerfile
+++ b/http.Dockerfile
@@ -7,6 +7,6 @@ COPY http/php-fpm.conf /etc/php85/php-fpm.d/joeac.net-http_pool.conf
COPY http/nginx.conf /etc/nginx/nginx.conf
CMD mkdir -p "$(dirname "$DB_PATH")" \
&& touch $DB_PATH \
- && chmod -R o+w "$(dirname "$DB_PATH")" \
+ && chmod -R g+rw "$(dirname "$DB_PATH")" \
&& php-fpm85 \
&& nginx -g "daemon off;"