You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
363 B
YAML
19 lines
363 B
YAML
version: '3'
|
|
services:
|
|
gunicorn:
|
|
env_file:
|
|
- .env
|
|
image: xmrauctions:latest
|
|
command: [".venv/bin/gunicorn", "-b", "0.0.0.0:8000", "xmrauctions.wsgi"]
|
|
ports:
|
|
- 8000:8000
|
|
depends_on:
|
|
- "db"
|
|
huey:
|
|
env_file:
|
|
- .env
|
|
image: xmrauctions:latest
|
|
command: ["./manage.py", "run_huey"]
|
|
depends_on:
|
|
- "db"
|