mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 21:47:53 +08:00
17 lines
361 B
YAML
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
|