-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (55 loc) · 1.49 KB
/
docker-compose.yml
File metadata and controls
60 lines (55 loc) · 1.49 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: '3.8'
services:
wkk_boi:
depends_on:
- lavalink_server
- lavalink_api
image: ghcr.io/wkk-offcial/boi_redemption_arc:latest
container_name: wkk_boi
networks:
- wkk-network
volumes:
- ./soundboards:/wkk-bot/cache/soundboards
environment:
- BOT_TOKEN=${DISCORD_TOKEN}
- SERVER_IP=lavalink_api
- SERVER_PORT=8000
- SERVER_ENDPOINT=sounds
- WAVELINK_URL=http://lavalink_server
- WAVELINK_PORT=2333
- WAVELINK_PASSWORD=${WAVELINK_PASSWORD}
restart: unless-stopped
lavalink_server:
image: ghcr.io/wkk-offcial/lavalink_server:latest
container_name: lavalink_server
networks:
- wkk-network
ports:
- "36969:2333"
volumes:
- sounds:/home/Lavalink/sounds
- ./application.yml:/home/Lavalink/application.yml
environment:
- DROPBOX_APP_KEY=${DROPBOX_APP_KEY}
- DROPBOX_APP_SECRET=${DROPBOX_APP_SECRET}
- DROPBOX_REFRESH_TOKEN=${DROPBOX_REFRESH_TOKEN}
restart: unless-stopped
lavalink_api:
image: ghcr.io/wkk-offcial/lavalink_helper_api:latest
container_name: lavalink_api
networks:
- wkk-network
ports:
- "36970:8000"
volumes:
- sounds:/home/Lavalink/sounds
environment:
- DROPBOX_APP_KEY=${DROPBOX_APP_KEY}
- DROPBOX_APP_SECRET=${DROPBOX_APP_SECRET}
- DROPBOX_REFRESH_TOKEN=${DROPBOX_REFRESH_TOKEN}
restart: unless-stopped
networks:
wkk-network:
driver: bridge
volumes:
sounds: