13 lines
251 B
YAML
13 lines
251 B
YAML
services:
|
|
ai-gateway:
|
|
build: .
|
|
container_name: ai-gateway
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "8000:8000"
|
|
restart: always
|
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
|