diff --git a/apps/erp-integration/docker-compose.json b/apps/erp-integration/docker-compose.json index a51a871..c0b7ac1 100644 --- a/apps/erp-integration/docker-compose.json +++ b/apps/erp-integration/docker-compose.json @@ -8,22 +8,43 @@ "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" } + { + "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", + "hostPath": "/home/alexz/ERP-Integration/backend/data", "containerPath": "/app/backend/data", "readOnly": false }, { - "hostPath": "${APP_DATA_DIR}/uploads", + "hostPath": "/home/alexz/ERP-Integration/backend/uploads", "containerPath": "/app/backend/uploads", "readOnly": false }