File size: 390 Bytes
21c7db9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | version: "3.9"
services:
polyguard-api:
build: .
ports:
- "8200:8200"
environment:
- POLYGUARD_API_HOST=0.0.0.0
- POLYGUARD_API_PORT=8200
command: python -m app.api
polyguard-env:
build: .
ports:
- "8100:8100"
environment:
- POLYGUARD_ENV_HOST=0.0.0.0
- POLYGUARD_ENV_PORT=8100
command: python -m app.env.fastapi_app
|