Bot Updating Documentation

pull/11/head
LinuxServer-CI 2020-03-23 20:58:16 +01:00
rodzic 578202e198
commit 75c829e041
1 zmienionych plików z 10 dodań i 8 usunięć

Wyświetl plik

@ -50,9 +50,9 @@ docker create \
-e TZ=Europe/London \ -e TZ=Europe/London \
-e UMASK_SET=022 `#optional` \ -e UMASK_SET=022 `#optional` \
-p 8686:8686 \ -p 8686:8686 \
-v </path/to/appdata/config>:/config \ -v /path/to/appdata/config:/config \
-v </path/to/music>:/music \ -v /path/to/music:/music \
-v </path/to/downloads>:/downloads \ -v /path/to/downloads:/downloads \
--restart unless-stopped \ --restart unless-stopped \
linuxserver/lidarr linuxserver/lidarr
``` ```
@ -75,9 +75,9 @@ services:
- TZ=Europe/London - TZ=Europe/London
- UMASK_SET=022 #optional - UMASK_SET=022 #optional
volumes: volumes:
- </path/to/appdata/config>:/config - /path/to/appdata/config:/config
- </path/to/music>:/music - /path/to/music:/music
- </path/to/downloads>:/downloads - /path/to/downloads:/downloads
ports: ports:
- 8686:8686 - 8686:8686
restart: unless-stopped restart: unless-stopped
@ -108,8 +108,8 @@ Docker images are configured using parameters passed at runtime (such as those a
| Volume | Function | | Volume | Function |
| :----: | --- | | :----: | --- |
| `/config` | Configuration files for Lidarr. | | `/config` | Configuration files for Lidarr. |
| `/music` | Music files. | | `/music` | Music files (See note in Application setup). |
| `/downloads` | Path to your download folder for music. | | `/downloads` | Path to your download folder for music (See note in Application setup). |
@ -129,6 +129,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>:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). Access the webui at `<your-ip>:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr).
Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music.
Another item to keep in mind, is that within lidarr itself, you should then map your torrent client folder to your lidarr 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/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types.