Skip to content

Instantly share code, notes, and snippets.

@JAlcocerT
Last active January 1, 2022 23:38
Show Gist options
  • Save JAlcocerT/a1e51600e3153a400dcd63cf31dd1a63 to your computer and use it in GitHub Desktop.
Save JAlcocerT/a1e51600e3153a400dcd63cf31dd1a63 to your computer and use it in GitHub Desktop.
Docker-Media
docker run -d --name=jackett \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Madrid \
-p 9117:9117 \
-v ~/Docker/Jackett/config:/config \
-v ~/Downloads/Jackett/downloads:/downloads \
--restart unless-stopped \
linuxserver//jackett
#ghcr.io/linuxserver/jackett
#https://github.com/Jackett/Jackett
docker run -d --name=radarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Madrid \
-p 7878:7878 \
-v /Docker/path/Radarr/config:/config \
-v /path/to/movies:/movies `#optional` \
-v ~/Downloads/Radarr:/downloads `#optional` \
--restart unless-stopped \
linuxserver/radarr
#https://github.com/Radarr/Radarr
docker run -d --name=sonarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Madrid \
-p 8989:8989 \
-v ~/Docker/Sonarr/config:/config \
-v /path/to/tvseries:/tv `#optional` \
-v /path/to/downloadclient-downloads:/downloads `#optional` \
--restart unless-stopped \
linuxserver/sonarr
#ghcr.io/linuxserver/sonarr
#https://github.com/Sonarr/Sonarr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment