Fix jwt-token

This commit is contained in:
2025-09-20 06:28:24 +02:00
parent 04d15485bf
commit aa886599c6
2 changed files with 33 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
# This script runs as root to set up permissions, then switches to nodejs user
# Ensure uploads directory exists and has correct permissions
mkdir -p /app/uploads/logos
chown -R nodejs:nodejs /app/uploads
chmod -R 755 /app/uploads
# Switch to nodejs user and execute the command with dumb-init for signal handling
exec su-exec nodejs dumb-init -- "$@"