| version: "3.8" | |
| services: | |
| app: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| platform: linux/amd64 | |
| volumes: | |
| - .:/opt/orbita | |
| ports: | |
| - 8000:8000 | |
| command: uvicorn app.api:app --reload --port 8000 --host 0.0.0.0 --reload-exclude main.py | |
| version: "3.8" | |
| services: | |
| app: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| platform: linux/amd64 | |
| volumes: | |
| - .:/opt/orbita | |
| ports: | |
| - 8000:8000 | |
| command: uvicorn app.api:app --reload --port 8000 --host 0.0.0.0 --reload-exclude main.py | |