nopaque/docker-compose/docker-compose.development.yml

17 lines
516 B
YAML
Raw Normal View History

services:
nopaque:
environment:
- FLASK_DEBUG=True
ports:
- "5000:5000"
volumes:
# Mount code as volumes
- "./app:/home/nopaque/app"
- "./boot.sh:/home/nopaque/boot.sh"
- "./config.py:/home/nopaque/config.py"
2023-09-26 13:08:22 +00:00
- "./docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh"
- "./migrations:/home/nopaque/migrations"
- "./requirements.txt:/home/nopaque/requirements.txt"
- "./tests:/home/nopaque/tests"
2024-04-10 11:52:33 +00:00
- "./wsgi.py:/home/nopaque/wsgi.py"