mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-02-20 07:59:50 -05:00
41 lines
940 B
YAML
41 lines
940 B
YAML
services:
|
|
db:
|
|
image: postgres:latest
|
|
restart: unless-stopped
|
|
container_name: postgres
|
|
volumes:
|
|
- .\res\postgres:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: MediaManager
|
|
POSTGRES_DB: MediaManager
|
|
POSTGRES_PASSWORD: MediaManager
|
|
ports:
|
|
- "5432:5432"
|
|
prowlarr:
|
|
image: lscr.io/linuxserver/prowlarr:latest
|
|
container_name: prowlarr
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- .\res\prowlarr:/config
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9696:9696"
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- WEBUI_PORT=8080
|
|
- TORRENTING_PORT=6881
|
|
ports:
|
|
- 8080:8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./torrent/:/download/:rw |