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
369 B
YAML
19 lines
369 B
YAML
5 years ago
|
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
|
||
5 years ago
|
depends_on:
|
||
|
- "db"
|
||
5 years ago
|
huey:
|
||
|
env_file:
|
||
|
- .env
|
||
|
image: xmrauctions:latest
|
||
5 years ago
|
command: ["./manage.py", "run_huey", "-q"]
|
||
5 years ago
|
depends_on:
|
||
|
- "db"
|