-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
19 lines (19 loc) · 991 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
services:
discord-free-game-notifier:
container_name: discord-free-game-notifier
image: ghcr.io/thelovinator1/discord-free-game-notifier:master
env_file:
- .env
environment:
- WEBHOOK_URL=${WEBHOOK_URL}
# You can send notifications from multiple stores to different channels by adding different webhooks for each store.
# Note: If you use both WEBHOOK_URL and those below, it will send to both channels.
# GOG_WEBHOOK=https://discord.com/api/webhooks/1234567890/abcdefghijklmnopqrstuvwxyz1
# STEAM_WEBHOOK=https://discord.com/api/webhooks/1234567890/abcdefghijklmnopqrstuvwxyz1
# EPIC_WEBHOOK=https://discord.com/api/webhooks/1234567890/abcdefghijklmnopqrstuvwxyz1
# UBISOFT_WEBHOOK=https://discord.com/api/webhooks/1234567890/abcdefghijklmnopqrstuvwxyz1
volumes:
- discord-free-game-notifier:/home/botuser/.local/share/discord_free_game_notifier/
restart: unless-stopped
volumes:
discord-free-game-notifier: