diff --git a/docker-compose.yml b/docker-compose.yml index 7eb8ac9..8695616 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,11 +2,17 @@ services: ai-gateway: build: . container_name: ai-gateway + expose: + - "8191" environment: - PYTHONUNBUFFERED=1 env_file: - .env - ports: - - "8000:8000" + networks: + - gateway_net restart: always - command: uvicorn app.main:app --host 0.0.0.0 --port 8000 + command: uvicorn app.main:app --host 0.0.0.0 --port 8191 + +networks: + gateway_net: + external: true