c3lf-system-3/deploy/dev/docker-compose.yml
jedi d80fb60afd
All checks were successful
/ test (push) Successful in 2m27s
/ deploy (push) Successful in 3m22s
fix bug in initial db creation caused by prometheus lib rtying to access tables at load time
2025-03-09 21:27:19 +01:00

33 lines
No EOL
796 B
YAML

name: c3lf-sys3-dev
services:
core:
build:
context: ../../core
dockerfile: ../deploy/dev/Dockerfile.backend
command: bash -c 'python manage.py migrate && python testdata.py && python manage.py runserver 0.0.0.0:8000'
environment:
- HTTP_HOST=core
- DB_FILE=.local/dev.db
- DEBUG_MODE_ACTIVE=true
volumes:
- ../../core:/code:ro
- ../testdata.py:/code/testdata.py:ro
- backend_context:/code/.local
ports:
- "8000:8000"
frontend:
build:
context: ../../web
dockerfile: ../deploy/dev/Dockerfile.frontend
command: npm run serve
volumes:
- ../../web/src:/web/src
- ./vue.config.js:/web/vue.config.js
ports:
- "8080:8080"
depends_on:
- core
volumes:
backend_context: