Created
November 20, 2018 20:54
-
-
Save mrbig00/417aa4cfa264ded1eb3d9fe6e68ea793 to your computer and use it in GitHub Desktop.
Dockerized media center pirate kit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker create --name sonarr | |
-p 8989:8989 | |
-e PUID=1000 | |
-e PGID=1000 | |
-e TZ=Europe/Bucharest | |
-v /etc/localtime:/etc/localtime:ro | |
-v /home/mrbig/docker-containers/configurations/sonarr:/config | |
-v /home/mrbig/docker-containers/volumes/sonarr/tv:/tv | |
-v /home/mrbig/docker-containers/volumes/deluge/downloads:/downloads linuxserver/sonarr | |
docker create --name=deluge | |
--net=host | |
-e PUID=1000 | |
-e PGID=1000 | |
-e UMASK_SET=022 | |
-e TZ=Europe/Bucharest | |
-v /home/mrbig/docker-containers/configurations/deluge:/config | |
-v /home/mrbig/docker-containers/volumes/deluge/downloads:/downloads | |
--restart unless-stopped linuxserver/deluge | |
docker create | |
--name=jackett | |
-v /home/mrbig/docker-containers/configurations/jacket:/config | |
-v /home/mrbig/docker-containers/volumes/deluge/downloads:/downloads | |
-e PGID=1000 -e PUID=1000 | |
-e TZ=Europe/Bucharest | |
-v /etc/localtime:/etc/localtime:ro | |
-p 9117:9117 | |
linuxserver/jackett | |
docker create | |
--name=plex | |
--net=host | |
-e VERSION=latest | |
-e PUID=1000 -e PGID=1000 | |
-e TZ=Europe/Bucharest | |
-v /home/mrbig/docker-containers/configurations/plex:/config | |
-v /home/mrbig/docker-containers/volumes/sonarr/tv:/data/tvshows | |
-v /home/mrbig/docker-containers/volumes/sonarr/movies:/data/movies | |
-v /media/mrbig/Downloads/docker/volumes/plex/transcode:/transcode | |
linuxserver/plex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment