-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.dev.yaml
More file actions
48 lines (47 loc) · 1 KB
/
compose.dev.yaml
File metadata and controls
48 lines (47 loc) · 1 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
---
services:
yoink:
build: .
container_name: yoink
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- yoink-data:/data
- ./music:/music
- ./development/slskd-data:/app
environment:
RUST_BACKTRACE: 1
AUTH_DISABLED: true
DOWNLOAD_LYRICS: true
DATABASE_URL: postgres://yoink:yoink@postgres:5432/yoink
postgres:
image: postgres:18-alpine
container_name: yoink-postgres
restart: unless-stopped
ports:
- "5432:5432"
environment:
POSTGRES_USER: yoink
POSTGRES_PASSWORD: yoink
POSTGRES_DB: yoink
volumes:
- postgres-data:/var/lib/postgresql
slskd:
image: slskd/slskd
container_name: slskd
ports:
- "5030:5030"
- "5031:5031"
- "50300:50300"
environment:
- SLSKD_REMOTE_CONFIGURATION=true
volumes:
- ./development/slskd-data:/app
- ./music:/music
env_file:
- .env.docker
restart: always
volumes:
yoink-data:
postgres-data: