Move docker-compose example files in subdirectory

This commit is contained in:
Patrick Jentsch
2022-07-15 12:22:19 +02:00
parent 81e5027544
commit bab98c52a1
4 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,17 @@
version: "3.5"
services:
nopaque:
environment:
- FLASK_ENV=development
ports:
- "5000:5000"
volumes:
# Mount code as volumes
- "./app:/home/nopaque/app"
- "./boot.sh:/home/nopaque/boot.sh"
- "./config.py:/home/nopaque/config.py"
- "./migrations:/home/nopaque/migrations"
- "./nopaque.py:/home/nopaque/nopaque.py"
- "./requirements.txt:/home/nopaque/requirements.txt"
- "./tests:/home/nopaque/tests"