maybe it's about perms?

This commit is contained in:
2025-10-15 13:38:41 +03:00
parent 54daf46d06
commit 529dd0460d
3 changed files with 62 additions and 5 deletions

View File

@@ -7,10 +7,12 @@ services:
args:
UID: ${UID}
GID: ${GID}
# for the volumes below, ensure the server user has write access
# "server user" is the user that UID and GID's are passed with env variables
volumes:
- ./data:/data
- ./docs:/var/www/docs
- ./deploys:/var/www/deploys
- ./volumes/data:/data # SQLite DB
- ./volumes/docs:/var/www/docs # published files
- ./volumes/deploys:/var/www/deploys # releases
ports:
- "${HOST}:${PORT}:8080"
user: "${UID}:${GID}"