22 lines
676 B
YAML
22 lines
676 B
YAML
services:
|
|
web:
|
|
image: quay.io/peprolinbot/caficteria-web:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80
|
|
environment:
|
|
- DJANGO_ALLOWED_HOSTS=example.com
|
|
- DJANGO_SECRET_KEY=changemetosomethingsecureplease
|
|
volumes:
|
|
- /data/caficteria-aas/web_db.sqlite3:/app/db.sqlite3
|
|
- /data/caficteria-aas/menu_history.json:/tmp/menu_history.json:ro
|
|
|
|
bot:
|
|
image: quay.io/peprolinbot/caficteria-bot:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- TG_API_ID=yourtgapiid
|
|
- TG_API_HASH=yourtgapihash
|
|
- TG_CHANNEL_NAME=CafeteriaFIC
|
|
volumes:
|
|
- /data/caficteria-aas/menu_history.json:/tmp/menu_history.json |