Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- docker-compose.yml
- version: "3.8"
- services:
- lidarr:
- image: blampe/lidarr:latest
- container_name: lidarr
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Chicago
- ports:
- - "8686:8686"
- volumes:
- - ./lidarr:/config
- - /mnt/nas/music:/music
- - /mnt/nas/downloads:/downloads
- - /mnt/nas/completed:/completed
- restart: unless-stopped
- slskd:
- image: ghcr.io/slskd/slskd:latest
- container_name: slskd
- environment:
- - PUID=1000
- - PGID=1000
- - TZ=America/Chicago
- - SLSKD_API_KEY=generic123 # <--- ADDED THIS LINE
- volumes:
- - ./slskd/slskd.yml:/app/slskd.yml:ro
- - ./slskd/data:/app/data
- - /mnt/nas/music:/music
- ports:
- - "5030:5030"
- - "5031:5031"
- restart: unless-stopped
- soulmate:
- image: soulmate:latest
- container_name: soulmate
- environment:
- - TZ=America/Chicago
- - LIDARR__URL=http://lidarr:8686
- - LIDARR__KEY=ca9d237407ca4667b7bc76949d63e0fd
- - SLSKD__URL=http://slskd:5030
- - SLSKD__KEY=generic123
- - SLSKD__SHARE_DIR=/music
- - DOWNLOAD_DIR=/downloads
- - COMPLETE_DIR=/completed
- volumes:
- - ./soulmate:/data
- - /mnt/nas/music:/music
- - /mnt/nas/downloads:/downloads
- - /mnt/nas/completed:/completed
- ports:
- - "7373:7373"
- restart: unless-stopped
- slskd.yml:
- soulseek:
- username: ***
- password: ***
- listen_ip_address: 0.0.0.0
- listen_port: 50300
- server:
- host: 0.0.0.0
- port: 5030
- shares: # <--- Changed this from 'sharing'
- directories: # <--- Added this, and 'path' is no longer needed
- - /music # <--- This is still the path inside the container
- allowed_cidrs:
- - 172.16.0.0/12
- - 172.17.0.0/16
- - 172.18.0.0/16
- - 172.19.0.0/16
- - 172.20.0.0/16
- - 172.21.0.0/16
- - 172.22.0.0/16
- - 192.168.0.0/16
- - 10.0.0.0/8
- auth:
- api_key: generic123
Advertisement
Add Comment
Please, Sign In to add comment