Files
django-q2/web-docker-compose.yaml
Stan Triepels 2191897825 Add example project (#215)
* add example project

* format

* fix format
2024-09-08 03:13:49 +02:00

17 lines
361 B
YAML

services:
web:
restart: always
command: bash -c "python manage.py migrate && python manage.py runserver 0.0.0.0:8000"
ports:
- "127.0.0.1:8000:8000"
build: .
volumes:
- .:/app
django-q:
restart: always
command: bash -c "python manage.py migrate && python manage.py qcluster"
build: .
volumes:
- .:/app