Added erp-integration: SAP S/4HANA Migration Dashboard app

This commit is contained in:
2026-03-19 09:09:41 +00:00
parent 5bffff1d9b
commit 7fd226d229
3 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"services": [
{
"name": "erp-integration",
"image": "git.alexzaw.dev/alexz/erp-integration:latest",
"isMain": true,
"internalPort": 8001,
"environment": [
{ "key": "TZ", "value": "${TZ}" },
{ "key": "ANTHROPIC_API_KEY", "value": "${ANTHROPIC_API_KEY}" },
{ "key": "ANTHROPIC_MODEL", "value": "${ANTHROPIC_MODEL}" },
{ "key": "AGENT_CHAT_ENABLED", "value": "${AGENT_CHAT_ENABLED}" },
{ "key": "CORS_ORIGIN", "value": "${CORS_ORIGIN}" },
{ "key": "NODE_ENV", "value": "production" },
{ "key": "PORT", "value": "8001" }
],
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/app/backend/data",
"readOnly": false
},
{
"hostPath": "${APP_DATA_DIR}/uploads",
"containerPath": "/app/backend/uploads",
"readOnly": false
}
],
"healthCheck": {
"test": "curl --fail http://localhost:8001/api/health || exit 1",
"interval": "30s",
"timeout": "10s",
"retries": 3
}
}
]
}