19 lines
326 B
YAML
19 lines
326 B
YAML
services:
|
|
ai-gateway:
|
|
build: .
|
|
container_name: ai-gateway
|
|
expose:
|
|
- "8191"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
- gateway_net
|
|
restart: always
|
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8191
|
|
|
|
networks:
|
|
gateway_net:
|
|
external: true
|