30 lines
1 KiB
YAML
30 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
|
|
networks: #
|
|
- default # Remove theses four lines if you
|
|
depends_on: # don't want to use the music.py cog
|
|
- lavalink #
|
|
restart: unless-stopped
|
|
|
|
# Use this if you want to use the cog music.py, otherwise you can delete this part
|
|
lavalink:
|
|
image: registry.gitlab.com/confreriedukassoulait/lavalink:latest
|
|
container_name: KassouBot-Lavalink
|
|
ports:
|
|
- 2333:2333
|
|
networks:
|
|
- default
|
|
restart: unless-stopped
|