-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
45 lines (45 loc) · 1.03 KB
/
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
40
41
42
43
44
45
services:
pinatbot:
image: 'ghcr.io/apinat/pinatbot:latest'
container_name: pinatbot
restart: unless-stopped
volumes:
- './PinatBot/appsettings.json:/app/appsettings.json'
depends_on:
- redis
- postgres
- lavalink
- seq
redis:
image: 'redis:latest'
container_name: redis-pinatbot
restart: unless-stopped
ports:
- 6379:6379
postgres:
image: 'postgres:latest'
container_name: postgres-pinatbot
restart: unless-stopped
ports:
- 5500:5432
environment:
POSTGRES_USER: pinatbot
POSTGRES_PASSWORD: pinatbot
POSTGRES_DB: pinatbot
lavalink:
image: 'ghcr.io/lavalink-devs/lavalink:latest'
container_name: lavalink-pinatbot
restart: unless-stopped
ports:
- 2333:2333
volumes:
- './lavalink.yaml:/opt/Lavalink/application.yml'
seq:
image: 'datalust/seq:latest'
container_name: seq-pinatbot
restart: unless-stopped
ports:
- 80:80
- 5341:5341
environment:
ACCEPT_EULA: 'Y'