-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
29 lines (28 loc) · 971 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: '2.3'
services:
yuuki:
image: "ghcr.io/yuuki-discord/yuuki-bot"
depends_on:
- redis
restart: unless-stopped
volumes:
- type: bind
source: ./config
target: /usr/src/app/config
environment:
# Overrides your configs Redis options for use with Docker Compose
# I don't advise changing this unless you have a strange setup.
- REDIS_DOCKER_OVERRIDE=true
# I am not 100% sure why I implemented this, but if you like
# environment variables then go for it.
# - BOT_TOKEN=EXAMPLEPLEASECHANGE
# - BOT_CLIENTID=306142257818632193
# - BOT_PREFIX='s!!'
# - BOT_OWNER=1234567890123456
redis:
image: "redis:alpine"
restart: always
volumes:
- type: bind
source: ./data/redis
target: /data