mirror of
https://github.com/daniviga/bite.git
synced 2025-03-14 07:13:07 +01:00
21 lines
492 B
YAML
21 lines
492 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
ingress:
|
|
# command: --providers.docker # For traefik only
|
|
ports:
|
|
- "80:80"
|
|
|
|
bite:
|
|
volumes:
|
|
- "./django/production.py.sample:/srv/app/bite/bite/production.py"
|
|
command: ["gunicorn", "-b", "0.0.0.0:8000", "bite.wsgi:application"]
|
|
|
|
data-migration:
|
|
volumes:
|
|
- "./django/production.py.sample:/srv/app/bite/bite/production.py"
|
|
|
|
mqtt-to-db:
|
|
volumes:
|
|
- "./django/production.py.sample:/srv/app/bite/bite/production.py"
|