From ee7a0a9df0bc5770434ef3b489f30a8fc38dcf91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 31 May 2024 16:12:08 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-sonarr.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/images/docker-sonarr.md b/docs/images/docker-sonarr.md index 53fc36c4d..9cc08fcaa 100644 --- a/docs/images/docker-sonarr.md +++ b/docs/images/docker-sonarr.md @@ -51,7 +51,7 @@ Access the webui at `:8989`, for more information check out [Sonarr](ht We have set `/tv` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. -Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. +Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/Docker_Guide#Consistent_and_well_planned_paths) on how to get started with this. @@ -72,7 +72,7 @@ services: - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/data:/config + - /path/to/sonarr/data:/config - /path/to/tvseries:/tv #optional - /path/to/downloadclient-downloads:/downloads #optional ports: @@ -89,7 +89,7 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 8989:8989 \ - -v /path/to/data:/config \ + -v /path/to/sonarr/data:/config \ -v /path/to/tvseries:/tv `#optional` \ -v /path/to/downloadclient-downloads:/downloads `#optional` \ --restart unless-stopped \ @@ -104,7 +104,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `8989` | The port for the Sonarr webinterface | +| `8989` | The port for the Sonarr web interface | ### Environment Variables (`-e`) @@ -290,6 +290,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **31.05.24:** - Rebase Alpine 3.20. * **12.01.24:** - Update download url. * **30.12.23:** - Rebase master branch to Alpine 3.19. * **15.02.23:** - Rebase master branch to Jammy.