File tree 17 files changed +169
-0
lines changed
17 files changed +169
-0
lines changed Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://hub.docker.com/r/flaresolverr/flaresolverr
Original file line number Diff line number Diff line change
1
+ version : ' 3.3'
2
+
3
+ services :
4
+ flaresolverr :
5
+ image : ghcr.io/flaresolverr/flaresolverr:latest
6
+ container_name : flaresolverr
7
+ ports :
8
+ - 8191:8191
9
+ environment :
10
+ - LOG_LEVEL=info
11
+ - TZ=Europe/Berlin
12
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://github.com/linuxserver/docker-jackett
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ jackett :
5
+ image : lscr.io/linuxserver/jackett:latest
6
+ container_name : jackett
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ - AUTO_UPDATE=true # optional
12
+ volumes :
13
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/config:/config
14
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/downloads:/downloads
15
+ ports :
16
+ - 9117:9117
17
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://jellyfin.org/docs/general/installation/container#docker
Original file line number Diff line number Diff line change
1
+ version : ' 3.3'
2
+ services :
3
+ jellyfin :
4
+ image : jellyfin/jellyfin:latest
5
+ container_name : jellyfin
6
+ volumes :
7
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config
8
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache
9
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media
10
+ network_mode : host
11
+ restart : unless-stopped
12
+ # environment:
13
+ # - JELLYFIN_PublishedServerUrl=http://example.com # Optional - alternative address used for autodiscovery
14
+ # extra_hosts:
15
+ # - "host.docker.internal:host-gateway" # Optional - may be necessary for docker healthcheck to pass if running in host network mode
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://github.com/linuxserver/docker-lidarr
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ lidarr :
5
+ image : lscr.io/linuxserver/lidarr:latest
6
+ container_name : lidarr
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ volumes :
12
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/config:/config
13
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/music:/music
14
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/downloads:/downloads # Should be the same as the download client's folder
15
+ ports :
16
+ - 8686:8686
17
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://hub.docker.com/r/plexinc/pms-docker
Original file line number Diff line number Diff line change
1
+ version : ' 3.3'
2
+
3
+ services :
4
+ pms-docker :
5
+ image : plexinc/pms-docker
6
+ container_name : plex
7
+ environment :
8
+ - TZ=Europe/Berlin
9
+ - PLEX_CLAIM=claim-dvmURANy9Z7MbJhmY7V7 # pls adjust
10
+ volumes :
11
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/config:/config
12
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/transcode:/transcode
13
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/media:/data
14
+ restart : unless-stopped
15
+ ports :
16
+ - ' 32400:32400'
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ prowlarr :
5
+ image : lscr.io/linuxserver/prowlarr:latest
6
+ container_name : prowlarr
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ volumes :
12
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/prowlarr/config:/config
13
+ ports :
14
+ - 9696:9696
15
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://github.com/linuxserver/docker-radarr
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ radarr :
5
+ image : lscr.io/linuxserver/radarr:latest
6
+ container_name : radarr
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ volumes :
12
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/config:/config
13
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/movies:/movies
14
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/downloads:/downloads # Should be the same as the download client's folder
15
+ ports :
16
+ - 7878:7878
17
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://github.com/linuxserver/docker-sonarr
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ sonarr :
5
+ image : cr.hotio.dev/hotio/sonarr
6
+ container_name : sonarr
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ volumes :
12
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/config:/config
13
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/data/tv
14
+ - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
15
+ ports :
16
+ - 8989:8989
17
+ restart : unless-stopped
Original file line number Diff line number Diff line change
1
+ # References
2
+
3
+ - https://github.com/linuxserver/docker-transmission
Original file line number Diff line number Diff line change
1
+ version : " 2.1"
2
+
3
+ services :
4
+ transmission :
5
+ image : lscr.io/linuxserver/transmission:latest
6
+ container_name : transmission
7
+ environment :
8
+ - PUID=1000
9
+ - PGID=1000
10
+ - TZ=Europe/Berlin
11
+ volumes :
12
+ - ' ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/config:/config'
13
+ - ' ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
14
+ - ' ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
15
+ ports :
16
+ - 9091:9091 # web ui
17
+ - 51413:51413 # torrent port tcp
18
+ - 51413:51413/udp # torrent port udp
19
+ restart : unless-stopped
You can’t perform that action at this time.
0 commit comments