This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
KassouBot/docker-compose.yml
2021-08-07 11:05:19 +02:00

27 lines
1,021 B
YAML

version: "2.1"
services:
kassoubot:
image: registry.gitlab.com/confreriedukassoulait/kassoubot:latest
container_name: KassouBot-Core
environment:
- TOKEN_DISCORD=yourTokenDiscord
- TOKEN_GENIUS=yourTokenGenius
- TOKEN_REDDIT_CLIENT_ID=yourRedditClientID
- TOKEN_REDDIT_CLIENT_SECRET=yourRedditClientSecret
- TOKEN_REDDIT_USER_AGENT=yourRedditUserAgent
- TIMEZONE=yourTimezone # More info here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- PREFIX=yourPrefix
volumes:
- /here/your/path/:/db
- /here/your/path/:/Lavalink # Use this if you want to use the cog music.py
restart: unless-stopped
# Use this if you want to use the cog music.py, otherwise delete this part
lavalink:
image: fredboat/lavalink:master
container_name: KassouBot-Lavalink
ports:
- 5432:5432
volumes:
- /here/your/path/:/ # Use the same path as the one for the Lavalink folder in kassoubot service
restart: unless-stopped