This commit is contained in:
2026-03-14 13:01:24 +01:00
commit 46fb96886a
25 changed files with 1546 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
set -e
# Ensure data dir exists and is writable by app user (fixes bind-mount permissions)
mkdir -p /app/data
chown -R app:app /app/data 2>/dev/null || true
chmod 777 /app/data
exec gosu app "$@"