fix(apps): normalize environment mappings
Test / test (pull_request) Canceled after 0s

This commit is contained in:
Hermes Agent
2026-09-02 17:23:48 +02:00
parent 8f3b7b3b2b
commit d24d0c194b
3 changed files with 67 additions and 229 deletions
+4 -10
View File
@@ -29,16 +29,10 @@
"readOnly": true
}
],
"environment": [
{
"key": "NGINX_HOST",
"value": "${NGINX_SERVER_NAME:-localhost}"
},
{
"key": "TZ",
"value": "${TZ:-Europe/Paris}"
}
],
"environment": {
"NGINX_HOST": "${NGINX_SERVER_NAME:-localhost}",
"TZ": "${TZ:-Europe/Paris}"
},
"healthCheck": {
"test": "curl --fail http://localhost:80 || exit 1",
"interval": "30s",