Build [v1.10.0]

This commit is contained in:
2026-04-15 17:31:58 +03:00
parent 074d4f1f8d
commit 062df8cfd9
7 changed files with 31 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
{
"version": "1.10.0",
"last_build": "2026-04-15-1645",
"last_build": "2026-04-15-1731",
"codename": "ModularAdmin",
"commit": "unknown"
"commit": "074d4f1f"
}

View File

@@ -26,5 +26,9 @@ EOF
chown nextjs:nodejs /app/public/network.json
# Hand off to the application server as the nextjs user
echo "🐳 [Docker] Starting Next.js standalone server as nextjs user..."
exec su-exec nextjs node server.js
echo "🐳 [Docker] Starting Next.js server..."
if [ $# -eq 0 ]; then
exec su-exec nextjs node server.js
else
exec su-exec nextjs "$@"
fi