Update documentation

This commit is contained in:
2020-12-29 15:28:31 +01:00
parent 14f19bdf48
commit 81119c2d17
7 changed files with 166 additions and 25 deletions

17
Docker/docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: "3"
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
restart: unless-stopped
volumes:
- data_folder:/home/botuser/data/
volumes:
data_folder: