ttvdrops/docker-compose.yml

28 lines
680 B
YAML

services:
ttvdrops:
container_name: ttvdrops
image: ghcr.io/thelovinator1/ttvdrops:latest
expose:
- "8000"
user: 1000:1000
environment:
- DEBUG=False
- DJANGO_SECRET_KEY=
- TWITCH_CLIENT_ID=
- TWITCH_CLIENT_SECRET=
- EMAIL_HOST=smtp.gmail.com
- EMAIL_PORT=587
- EMAIL_HOST_USER=
- EMAIL_HOST_PASSWORD=
- EMAIL_USE_TLS=True
- EMAIL_USE_SSL=False
volumes:
# Data is stored in /root/.local/share/TTVDrops" inside the container
- /mnt/Docker/Data/ttvdrops/data:/root/.local/share/TTVDrops
restart: unless-stopped
networks:
- web
networks:
web:
external: true