mirror of
https://github.com/FutureOfMedTech-FITM-hack/backend.git
synced 2024-11-21 22:16:33 +03:00
14 lines
247 B
YAML
14 lines
247 B
YAML
|
version: '3.9'
|
||
|
|
||
|
services:
|
||
|
api:
|
||
|
ports:
|
||
|
# Exposes application port.
|
||
|
- "8000:8000"
|
||
|
volumes:
|
||
|
# Adds current directory as volume.
|
||
|
- .:/app/src/
|
||
|
environment:
|
||
|
# Enables autoreload.
|
||
|
MED_BACKEND_RELOAD: "True"
|