2020-06-15 22:47:55 +02:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
services:
|
|
|
|
ingress:
|
|
|
|
command: --providers.docker
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
|
2020-06-17 20:08:10 +02:00
|
|
|
beer:
|
2020-06-15 22:47:55 +02:00
|
|
|
volumes:
|
2020-06-17 20:08:10 +02:00
|
|
|
- "./django/production.py.sample:/srv/app/beer/beer/production.py"
|
|
|
|
command: ["gunicorn", "-b", "0.0.0.0:8000", "beer.wsgi:application"]
|
2020-06-15 22:47:55 +02:00
|
|
|
|
|
|
|
data-migration:
|
|
|
|
volumes:
|
2020-06-17 20:08:10 +02:00
|
|
|
- "./django/production.py.sample:/srv/app/beer/beer/production.py"
|
2020-06-15 22:47:55 +02:00
|
|
|
|
|
|
|
mqtt-to-db:
|
|
|
|
volumes:
|
2020-06-17 20:08:10 +02:00
|
|
|
- "./django/production.py.sample:/srv/app/beer/beer/production.py"
|