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

30 lines
872 B
YAML
Raw Normal View History

2021-03-17 21:37:05 +01:00
version: "2.1"
services:
kassoubot:
2021-08-07 11:05:19 +02:00
image: registry.gitlab.com/confreriedukassoulait/kassoubot:latest
container_name: KassouBot-Core
2021-03-17 21:37:05 +01:00
environment:
2021-05-08 02:35:45 +02:00
- 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
2021-06-03 08:07:53 +02:00
volumes:
2021-06-13 22:41:05 +02:00
- /here/your/path/:/db
2021-08-14 16:08:08 +02:00
networks:
- default
depends_on:
- lavalink
2021-08-07 11:05:19 +02:00
restart: unless-stopped
lavalink:
2021-08-14 16:06:12 +02:00
image: registry.gitlab.com/confreriedukassoulait/lavalink:latest
2021-08-07 11:05:19 +02:00
container_name: KassouBot-Lavalink
ports:
2021-08-07 11:57:13 +02:00
- 2333:2333
2021-08-14 16:06:12 +02:00
networks:
- default
2021-03-17 21:37:05 +01:00
restart: unless-stopped