mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
158 lines
4.0 KiB
YAML
158 lines
4.0 KiB
YAML
---
|
|
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
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
|
|
- /share/docker_data/homarr/configs:/app/data/configs
|
|
- /share/docker_data/homarr/icons:/app/public/icons
|
|
- /share/docker_data/homarr/data:/data
|
|
ports:
|
|
- '7575:7575'
|
|
flaresolverr:
|
|
container_name: flaresolverr
|
|
image: ghcr.io/flaresolverr/flaresolverr:latest
|
|
ports:
|
|
- 8191:8191
|
|
environment:
|
|
- LOG_LEVEL: 'info'
|
|
restart: unless-stopped |