Added erp-integration: SAP S/4HANA Migration Dashboard app
This commit is contained in:
39
apps/erp-integration/docker-compose.json
Normal file
39
apps/erp-integration/docker-compose.json
Normal 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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user