-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.example.yml
More file actions
40 lines (40 loc) · 1.03 KB
/
Copy pathcompose.example.yml
File metadata and controls
40 lines (40 loc) · 1.03 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
services:
bot:
image: kgdn/kinematica:latest
platform: linux/arm64
restart: unless-stopped
pull_policy: always
environment:
BOT_TOKEN: YOUR_BOT_TOKEN
DATABASE_URI: YOUR_DATABASE_URI
TMDB_API_KEY: YOUR_TMDB_API_KEY
VERSION: 1.0.0
LAVALINK_URL: YOUR_LAVALINK_URL
LAVALINK_PASSWORD: youshallnotpass
volumes:
- ./json:/app/json
network_mode: host
postgres:
image: postgres:latest
restart: unless-stopped
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: yourpassword
volumes:
- db-data:/var/lib/postgresql/data
network_mode: host
lavalink:
image: ghcr.io/lavalink-devs/lavalink:latest
restart: unless-stopped
environment:
JAVA_OPTIONS: -Xmx6G
SERVER_PORT: 2333
LAVALINK_SERVER_PASSWORD: youshallnotpass
volumes:
- ./applications.yml:/opt/Lavalink/application.yml
- ./plugins/:/opt/Lavalink/plugins/
pull_policy: always
network_mode: host
volumes:
db-data: