her / docker-compose.yml
Vo Hoang Minh
init
6586af0
raw
history blame contribute delete
275 Bytes
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