mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
upt playbook
This commit is contained in:
139
mediacenter/docker-compose.yml
Normal file
139
mediacenter/docker-compose.yml
Normal file
@ -0,0 +1,139 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
bazarr:
|
||||
image: lscr.io/linuxserver/bazarr:latest
|
||||
container_name: bazarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /share/docker_data/bazarr/config:/config
|
||||
- /share/Media/Video:/movies #optional
|
||||
- /share/Media/TvShows:/tv #optional
|
||||
ports:
|
||||
- 6767:6767
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
restart: always
|
||||
|
||||
jellyseerr:
|
||||
image: fallenbagel/jellyseerr:latest
|
||||
container_name: jellyseerr
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=Europe/Bratislava
|
||||
ports:
|
||||
- 5055:5055
|
||||
volumes:
|
||||
- /share/docker_data/jellyseerr/config:/app/config
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
jackett:
|
||||
image: lscr.io/linuxserver/jackett:latest
|
||||
container_name: jackett
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
- AUTO_UPDATE=true #optional
|
||||
- RUN_OPTS= #optional
|
||||
volumes:
|
||||
- /share/docker_data/jackett/config:/config
|
||||
- /share/docker_data/jackett/downloads:/downloads
|
||||
ports:
|
||||
- 9117:9117
|
||||
restart: always
|
||||
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
lidarr:
|
||||
image: lscr.io/linuxserver/lidarr:latest
|
||||
container_name: lidarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /share/docker_data/lidarr/config:/config
|
||||
- /share/Media/Music:/music #optional
|
||||
- /share/Download:/downloads #optional
|
||||
ports:
|
||||
- 8686:8686
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
jellyfin:
|
||||
image: lscr.io/linuxserver/jellyfin:latest
|
||||
container_name: jellyfin
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Bratislava
|
||||
- JELLYFIN_PublishedServerUrl=192.168.77.5 #optional
|
||||
volumes:
|
||||
- /share/docker_data/jellyfin:/config
|
||||
- /share/Media/:/data/
|
||||
|
||||
ports:
|
||||
- 8096:8096
|
||||
- 8920:8920 #optional
|
||||
- 7359:7359/udp #optional
|
||||
#- 1900:1900/udp #optional
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /share/docker_data/radarr/config:/config
|
||||
- /share/Media/Video:/movies #optional
|
||||
- /share/Download:/downloads #optional
|
||||
ports:
|
||||
- 7878:7878
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
sonarr:
|
||||
image: lscr.io/linuxserver/sonarr:latest
|
||||
container_name: sonarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /share/docker_data/sonarr/config:/config
|
||||
- /share/Media/TvShows:/tv #optional
|
||||
- /share/Download:/downloads #optional
|
||||
ports:
|
||||
- 8989:8989
|
||||
restart: always
|
||||
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
qbittorrent:
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
container_name: qbittorrent
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
- WEBUI_PORT=8085
|
||||
- FILE__PASSWORD=/run/secrets/mysecretpassword
|
||||
volumes:
|
||||
- /share/docker_data/qbittorrent/config:/config
|
||||
- /share/Download:/downloads
|
||||
ports:
|
||||
- 8085:8085
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
Reference in New Issue
Block a user