mirror of
https://github.com/TheLovinator1/discord-reminder-bot.git
synced 2025-07-13 09:03:29 +02:00
18 lines
425 B
YAML
18 lines
425 B
YAML
services:
|
|
discord-reminder-bot:
|
|
image: thelovinator/discord-reminder-bot
|
|
env_file:
|
|
- .env
|
|
container_name: discord-reminder-bot
|
|
environment:
|
|
- BOT_TOKEN=${BOT_TOKEN}
|
|
- TIMEZONE=${TIMEZONE}
|
|
- LOG_LEVEL=${LOG_LEVEL}
|
|
- SQLITE_LOCATION=/data/jobs.sqlite
|
|
- DATA_DIR=/data
|
|
restart: unless-stopped
|
|
volumes:
|
|
- data_folder:/home/botuser/data/
|
|
volumes:
|
|
data_folder:
|