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

33 lines
955 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-08-15 12:24:18 +02:00
- /here/your/path/:/opt/db
2021-08-14 16:08:08 +02:00
networks:
2021-08-16 18:55:50 +02:00
- kassoubot-network
2021-08-14 16:08:08 +02:00
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:
2021-08-16 18:55:50 +02:00
- kassoubot-network
2021-03-17 21:37:05 +01:00
restart: unless-stopped
2021-08-16 18:55:50 +02:00
networks:
kassoubot-network:
name: kassoubot-network