fix fonts and widget exantion
This commit is contained in:
13
j_version/docker-entrypoint.sh
Executable file
13
j_version/docker-entrypoint.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Fix permissions on mounted volumes
|
||||
chmod -R 777 /app 2>/dev/null || true
|
||||
chmod -R 777 /config 2>/dev/null || true
|
||||
|
||||
# Also fix ownership to match PUID/PGID
|
||||
chown -R ${PUID:-1000}:${PGID:-1000} /app 2>/dev/null || true
|
||||
chown -R ${PUID:-1000}:${PGID:-1000} /config 2>/dev/null || true
|
||||
|
||||
# Execute the original command
|
||||
exec "$@"
|
||||
Reference in New Issue
Block a user