diff --git a/images/docker-sonarr.md b/images/docker-sonarr.md index 6d560a9c9..37a21ba72 100644 --- a/images/docker-sonarr.md +++ b/images/docker-sonarr.md @@ -53,9 +53,9 @@ docker create \ -e TZ=Europe/London \ -e UMASK_SET=022 `#optional` \ -p 8989:8989 \ - -v :/config \ - -v :/tv \ - -v :/downloads \ + -v /path/to/data:/config \ + -v /path/to/tvseries:/tv \ + -v /path/to/downloadclient-downloads:/downloads \ --restart unless-stopped \ linuxserver/sonarr ``` @@ -78,9 +78,9 @@ services: - TZ=Europe/London - UMASK_SET=022 #optional volumes: - - :/config - - :/tv - - :/downloads + - /path/to/data:/config + - /path/to/tvseries:/tv + - /path/to/downloadclient-downloads:/downloads ports: - 8989:8989 restart: unless-stopped