Forked from
ICS Control System Infrastructure / csentry
322 commits behind the upstream repository.
-
Benjamin Bertrand authoredBenjamin Bertrand authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
docker-compose.override.yml 581 B
version: '2'
services:
web:
build: .
environment:
LOCAL_SETTINGS: /app/settings.cfg
FLASK_APP: /app/wsgi.py
FLASK_DEBUG: 1
command: flask run --host 0.0.0.0 --port 8000
ports:
- "8000:8000"
volumes:
- .:/app
worker:
environment:
LOCAL_SETTINGS: /app/settings.cfg
FLASK_APP: /app/wsgi.py
volumes:
- .:/app
postgres:
ports:
- "5432:5432"
volumes:
- ./postgres/create-test-db.sh:/docker-entrypoint-initdb.d/create-test-db.sh
- ${PGDATA_VOLUME}:/var/lib/postgresql/data/pgdata