chore(docker): add integrations service and Odoo config

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 22:18:59 +00:00
parent e24bc20070
commit 918b573de3
2 changed files with 23 additions and 5 deletions

View File

@@ -95,6 +95,7 @@ services:
DEEPSEEK_API_KEY: ${DEEPSEEK_API_KEY:-}
DEEPSEEK_MODEL: ${DEEPSEEK_MODEL:-deepseek-chat}
DEEPSEEK_BASE_URL: ${DEEPSEEK_BASE_URL:-https://api.deepseek.com}
INTEGRATIONS_URL: http://integrations:8002
depends_on:
postgres:
condition: service_healthy
@@ -103,6 +104,24 @@ services:
networks:
- wac_network
integrations:
build:
context: ./services/integrations
dockerfile: Dockerfile
container_name: wac_integrations
restart: unless-stopped
environment:
ODOO_URL: ${ODOO_URL:-}
ODOO_DB: ${ODOO_DB:-}
ODOO_USER: ${ODOO_USER:-}
ODOO_API_KEY: ${ODOO_API_KEY:-}
API_GATEWAY_URL: http://api-gateway:8000
FLOW_ENGINE_URL: http://flow-engine:8001
ports:
- "8002:8002"
networks:
- wac_network
frontend:
build:
context: ./frontend