27 lines
1 KiB
YAML
27 lines
1 KiB
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/:application.yml # 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
|