|
| 1 | +[linuxserverurl]: https://linuxserver.io |
| 2 | +[forumurl]: https://forum.linuxserver.io |
| 3 | +[ircurl]: https://www.linuxserver.io/irc/ |
| 4 | +[podcasturl]: https://www.linuxserver.io/podcast/ |
| 5 | + |
| 6 | +[][linuxserverurl] |
| 7 | + |
| 8 | +The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at: |
| 9 | +* [forum.linuxserver.io][forumurl] |
| 10 | +* [IRC][ircurl] on freenode at `#linuxserver.io` |
| 11 | +* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! |
| 12 | + |
| 13 | +# linuxserver/radarr |
| 14 | +[](http://microbadger.com/images/linuxserver/radarr "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io-hub-built/job/linuxserver-radarr/) |
| 15 | +[hub]: https://hub.docker.com/r/linuxserver/radarr/ |
| 16 | + |
| 17 | +A fork of Sonarr which aims to turn it into something like Couchpotato. |
| 18 | + |
| 19 | +[![radarr]()][radarrurl] |
| 20 | +[radarrurl]: https://github.com/Radarr/Radarr |
| 21 | + |
| 22 | +## Usage |
| 23 | + |
| 24 | +``` |
| 25 | +docker create \ |
| 26 | + --name=radarr \ |
| 27 | + -v <path to data>:/config \ |
| 28 | + -v <path to data>:/downloads \ |
| 29 | + -v <path to data>:/movies \ |
| 30 | + -e PGID=<gid> -e PUID=<uid> \ |
| 31 | + -e TZ=<timezone> \ |
| 32 | + -p 7878:7878 \ |
| 33 | + linuxserver/radarr |
| 34 | +``` |
| 35 | + |
| 36 | +## Parameters |
| 37 | + |
| 38 | +`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. |
| 39 | +For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. |
| 40 | +So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 |
| 41 | +http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.` |
| 42 | + |
| 43 | + |
| 44 | +* `-p 7878` - the port(s) |
| 45 | +* `-v /config` - Radarr Application Data |
| 46 | +* `-v /downloads` - Downloads Folder |
| 47 | +* `-v /movies` - Movie Share |
| 48 | +* `-e PGID` for for GroupID - see below for explanation |
| 49 | +* `-e PUID` for for UserID - see below for explanation |
| 50 | +* `-e TZ` for timezone information, eg Europe/London |
| 51 | + |
| 52 | +It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it radarr /bin/bash`. |
| 53 | + |
| 54 | +### User / Group Identifiers |
| 55 | + |
| 56 | +Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™. |
| 57 | + |
| 58 | +In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below: |
| 59 | + |
| 60 | +``` |
| 61 | + $ id <dockeruser> |
| 62 | + uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) |
| 63 | +``` |
| 64 | + |
| 65 | +## Setting up the application |
| 66 | + |
| 67 | +Access the webui at `<your-ip>:7878`, for more information check out [Radarr][radarrurl]. |
| 68 | + |
| 69 | +## Info |
| 70 | + |
| 71 | +* Shell access whilst the container is running: `docker exec -it radarr /bin/bash` |
| 72 | +* To monitor the logs of the container in realtime: `docker logs -f radarr` |
| 73 | + |
| 74 | +* container version number |
| 75 | + |
| 76 | +`docker inspect -f '{{ index .Config.Labels "build_version" }}' radarr` |
| 77 | + |
| 78 | +* image version number |
| 79 | + |
| 80 | +`docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/radarr` |
| 81 | + |
| 82 | +## Versions |
| 83 | + |
| 84 | ++ **dd.MM.yy:** Initial Release. |
0 commit comments