all
This commit is contained in:
7
container-bridge/docker-entrypoint.sh
Normal file
7
container-bridge/docker-entrypoint.sh
Normal 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 "$@"
|
||||
Reference in New Issue
Block a user