diff --git a/src/summary/compose.yaml b/src/summary/compose.yaml new file mode 100644 index 00000000..99470401 --- /dev/null +++ b/src/summary/compose.yaml @@ -0,0 +1,12 @@ +services: + app: + container_name: app + build: . + command: uvicorn summary.main:app --host 0.0.0.0 --port 8000 --reload + volumes: + - .:/app + ports: + - "8000:8000" + restart: always + env_file: + ".env"