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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/docker-compose.deploy.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"