fix Fatturazione elettronica XML previe

This commit is contained in:
2026-01-05 10:04:13 +01:00
parent 67c4783b8c
commit 6a19f7cde6
992 changed files with 17335 additions and 4344 deletions

13
gal/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 "$@"