23 lines
640 B
YAML
23 lines
640 B
YAML
|
version: '2'
|
||
|
|
||
|
services:
|
||
|
|
||
|
app-mtt-dev:
|
||
|
# image: docker.ilab.cl/ilab-mtt:devel
|
||
|
build: .
|
||
|
restart: "no"
|
||
|
volumes:
|
||
|
- ./GranConcepcion-process.db:/srv/webinterface/GranConcepcion.db
|
||
|
environment:
|
||
|
- DEBUG=False
|
||
|
- SECRET_KEY=4d6f45a5fc12445dbac2f59c3b6c7cb2
|
||
|
- SQLALCHEMY_DATABASE_URI=sqlite:///GranConcepcion.db
|
||
|
# - SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://docker:docker@db/docker
|
||
|
# - COOKIE_DOMAIN=utad.ilab.cl
|
||
|
# - SIGA_DB=postgresql+psycopg2:////docker:docker@localhost/docker
|
||
|
# - MAIL_SERVER=maul.usm.cl
|
||
|
# - MAIL_PORT=25
|
||
|
# - TIMEOUT=1200
|
||
|
ports:
|
||
|
- 8000:8000
|