diff --git a/Docker.md b/Docker.md index 65d6ed0..ed92e13 100644 --- a/Docker.md +++ b/Docker.md @@ -6,9 +6,17 @@ Start by getting Docker installed and working on your operating system of choice * [Install Docker on Arch Linux](https://docs.docker.com/engine/installation/linux/archlinux/) * [Docker on FreeBSD](https://wiki.freebsd.org/Docker) -## Pick Release or Nightly -Docker containers are intended to be static, they shouldn't self update internally. If you want to use stable releases, you want one that tracks releases. If you'd rather run the latest and greatest, the nightly is the right choice. Each of their docker pages has good setup and usage instructions, follow them. -* Develop Branch: [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr/) +## Pick Stable or Nightly +Docker containers are intended to be static, they shouldn't self update internally. As such, releases are tagged and built under certain names. This allows for immutable versioning. If you want to use a stable releases, you want a tag that tracks as such. If you'd rather run the latest and greatest, nightly is the right choice. The docker pages have good setup and usage instructions, follow them. +* Linuxserver.io branch: [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr/) + - latest: Stable releases + - 5.14: Stable releases, but run on Mono 5.14 + - nightly: Nightly releases + - preview: Alpha releases, unsupported and for development only +* hotios's branch: [hotio/radarr](https://hub.docker.com/r/hotio/radarr) + - latest: Stable releases + - develop: Nighly releases + # Using systemd Using your favorite editor, create `/etc/systemd/system/docker-radarr.service` with the following systemd unit file. Be sure to replace `timezone` and `path to data` with the correct values. Note that `ExecStart` is basically the same command on the docker page for the image you choose, so adjust appropriately. This example uses `linuxserver/radarr`, but `hotio/radarr` is equally as valid.