DH-integrations/docker-compose.yml

16 lines
305 B
YAML

version: "3.9"
services:
dh-app:
container_name: integration-dh-app
build:
target: runtime
entrypoint: >
uvicorn src.main:app
--reload
--port 80
--host 0.0.0.0
volumes:
- "./src:/app/src"
ports:
- "31010:80"
restart: unless-stopped