fastapi-test/docker-compose.debug.yml
2025-03-20 22:30:20 +11:00

13 lines
341 B
YAML

version: '3.4'
services:
fastapitest:
image: fastapitest
build:
context: .
dockerfile: ./Dockerfile
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m uvicorn app.main:app --host 0.0.0.0 --port 8090"]
ports:
- 8090:8090
- 5678:5678