We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c720408 commit cb6e622Copy full SHA for cb6e622
docker-compose.override.yml
@@ -60,7 +60,8 @@ services:
60
ports:
61
- "8000:8000"
62
build:
63
- context: ./backend
+ context: .
64
+ dockerfile: backend/Dockerfile
65
# command: sleep infinity # Infinite loop to keep container alive doing nothing
66
command:
67
- fastapi
@@ -71,15 +72,15 @@ services:
71
72
watch:
73
- path: ./backend
74
action: sync
- target: /app
75
+ target: /app/backend
76
ignore:
77
- ./backend/.venv
78
- .venv
79
- path: ./backend/pyproject.toml
80
action: rebuild
81
# TODO: remove once coverage is done locally
82
volumes:
- - ./backend/htmlcov:/app/htmlcov
83
+ - ./backend/htmlcov:/app/backend/htmlcov
84
environment:
85
SMTP_HOST: "mailcatcher"
86
SMTP_PORT: "1025"
0 commit comments