-
Notifications
You must be signed in to change notification settings - Fork 1
/
compose.yaml
39 lines (36 loc) · 943 Bytes
/
compose.yaml
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
services:
postgres:
image: postgres:16
container_name: substiify-postgres
ports:
- "5440:5432"
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stopped
environment:
POSTGRES_DB: substiify
POSTGRES_PASSWORD: example
TZ: "Europe/Zurich"
lavalink:
image: ghcr.io/lavalink-devs/lavalink:4
container_name: lavalink
restart: unless-stopped
environment:
- _JAVA_OPTIONS=-Xmx2G
- SERVER_PORT=2333
- LAVALINK_SERVER_PASSWORD=youshallnotpass
volumes:
- ./application.yml:/opt/Lavalink/application.yml
- ./plugins/:/opt/Lavalink/plugins/
ports:
- "2333:2333"
substiify:
image: ghcr.io/jackra1n/substiify-v2:release
container_name: substiify
depends_on:
- postgres
restart: unless-stopped
volumes:
- .env:/bot/.env
- ./logs:/bot/logs
- /etc/localtime:/etc/localtime:ro