kopia lustrzana https://github.com/linuxserver/docker-documentation
Bot Updating Documentation
rodzic
75c829e041
commit
12e55307ec
|
@ -53,9 +53,9 @@ docker create \
|
||||||
-e TZ=Europe/London \
|
-e TZ=Europe/London \
|
||||||
-e UMASK_SET=022 `#optional` \
|
-e UMASK_SET=022 `#optional` \
|
||||||
-p 7878:7878 \
|
-p 7878:7878 \
|
||||||
-v <path to data>:/config \
|
-v /path/to/data:/config \
|
||||||
-v <path/to/movies>:/movies \
|
-v /path/to/movies:/movies \
|
||||||
-v <path/to/downloadclient-downloads>:/downloads \
|
-v /path/to/downloadclient-downloads:/downloads \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
linuxserver/radarr
|
linuxserver/radarr
|
||||||
```
|
```
|
||||||
|
@ -78,9 +78,9 @@ services:
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
- UMASK_SET=022 #optional
|
- UMASK_SET=022 #optional
|
||||||
volumes:
|
volumes:
|
||||||
- <path to data>:/config
|
- /path/to/data:/config
|
||||||
- <path/to/movies>:/movies
|
- /path/to/movies:/movies
|
||||||
- <path/to/downloadclient-downloads>:/downloads
|
- /path/to/downloadclient-downloads:/downloads
|
||||||
ports:
|
ports:
|
||||||
- 7878:7878
|
- 7878:7878
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
@ -111,8 +111,8 @@ Docker images are configured using parameters passed at runtime (such as those a
|
||||||
| Volume | Function |
|
| Volume | Function |
|
||||||
| :----: | --- |
|
| :----: | --- |
|
||||||
| `/config` | Database and Radarr configs |
|
| `/config` | Database and Radarr configs |
|
||||||
| `/movies` | Location of Movie library on disk |
|
| `/movies` | Location of Movie library on disk (See note in Application setup) |
|
||||||
| `/downloads` | Location of download managers output directory |
|
| `/downloads` | Location of download managers output directory (See note in Application setup) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -132,6 +132,8 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel
|
||||||
## Application Setup
|
## Application Setup
|
||||||
|
|
||||||
Access the webui at `<your-ip>:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr).
|
Access the webui at `<your-ip>:7878`, for more information check out [Radarr](https://github.com/Radarr/Radarr).
|
||||||
|
Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your movies folder because they are on seperate volumes. To support hardlinking, simply ensure that the movies and downloads data are on a single volume. For example, if you have /mnt/storage/Movies and /mnt/storage/downloads/completed/Movies, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Movies.
|
||||||
|
Another item to keep in mind, is that within radarr itself, you should then map your torrent client folder to your radarr folder: Settings -> Download Client -> advanded -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Movies (relative to the internal container path) and local path is /media/downloads/completed/Movies, assuming you have folders to seperate your downloaded data types.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue