nopaque/docker-compose/docker-compose.development.yml
Patrick Jentsch 485a0155c6 Bump dependencies. Some parts needed to be deactivated for that. They need to be reimplemented.
- breadcrumbs (!flask-breadcrumbs)
- manual modal button
- api blueprint (!flask-marshmallow/!marshmallow-sqlalchemy)
2024-04-30 08:41:29 +02:00

17 lines
516 B
YAML

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"
- "./docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh"
- "./migrations:/home/nopaque/migrations"
- "./requirements.txt:/home/nopaque/requirements.txt"
- "./tests:/home/nopaque/tests"
- "./wsgi.py:/home/nopaque/wsgi.py"