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-16 18:55:50 +02:00

32 lines
955 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/:/opt/db
networks:
- kassoubot-network
depends_on:
- lavalink
restart: unless-stopped
lavalink:
image: registry.gitlab.com/confreriedukassoulait/lavalink:latest
container_name: KassouBot-Lavalink
ports:
- 2333:2333
networks:
- kassoubot-network
restart: unless-stopped
networks:
kassoubot-network:
name: kassoubot-network