| 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 | |