fix fonts and widget exantion

This commit is contained in:
2026-01-22 16:55:02 +01:00
parent 94b3a5ae88
commit 23f66fb76c
362 changed files with 61 additions and 14662 deletions

13
j_version/docker-entrypoint.sh Executable file
View 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 "$@"