add more options

hotio 2019-11-16 12:09:33 +01:00
parent 612b4ad513
commit adc1ab6dc3
1 changed files with 36 additions and 7 deletions

@ -1,4 +1,4 @@
To get up and running with Lidarr on [Docker](https://docs.docker.com/) you can use the **unofficial** docker image provided by [LinuxServer](https://github.com/linuxserver).
To get up and running with Lidarr on [Docker](https://docs.docker.com/) you can use the **unofficial** docker image provided by [LinuxServer](https://github.com/linuxserver) or [hotio](https://github.com/hotio).
https://github.com/linuxserver/docker-lidarr
@ -8,11 +8,25 @@ docker create \
-v <path to data>:/config \
-v <path to downloads>:/downloads \
-v <path to music>:/music \
-e PGID=<gid> -e PUID=<uid> \
-e PGID=<gid> -e PUID=<uid> \
-p 8686:8686 \
linuxserver/lidarr
```
https://github.com/hotio/docker-lidarr
```bash
docker create \
--name=lidarr \
-v <path to data>:/config \
-v <path to downloads>:/downloads \
-v <path to music>:/music \
-e PGID=<gid> -e PUID=<uid> \
-e TZ=Etc/UTC \
-p 8686:8686 \
hotio/lidarr
```
A more detailed guide to setting up Sonarr, Radarr and Lidarr in docker is available [here](https://old.reddit.com/r/usenet/wiki/docker).
## Parameters
@ -23,11 +37,12 @@ A more detailed guide to setting up Sonarr, Radarr and Lidarr in docker is avail
| `-v /config` | Contains your config files|
| `-v /downloads` | Path to your download folder for music |
| `-v /music` | Path to your music library |
| `-e PGID` | for GroupID, see below for explanation |
| `-e PUID` | for UserID, see below for explanation |
| `-e PGID` | for GroupID |
| `-e PUID` | for UserID |
| `-e TZ` | your timezone |
| `-e UMASK_SET` or `-e UMASK` | the umask to use |
These parameters may be out of date if the image is updated. For more documentation that's up-to-date, see the Docker image's github README: https://github.com/linuxserver/docker-lidarr/blob/master/README.md
These parameters may be out of date if the image is updated. For more documentation that's up-to-date, see the Docker image's github README: [linuxserver](https://github.com/linuxserver/docker-lidarr/blob/master/README.md) or [hotio](https://github.com/hotio/docker-lidarr/blob/master/README.md).
## docker-compose
@ -45,4 +60,18 @@ services:
- ./config:/config
- ./music:/music
- ./downloads:/downloads
```
```
```yml
version: '2'
services:
lidarr:
container_name: lidarr
image: hotio/lidarr
ports:
- "8686:8686"
volumes:
- ./config:/config
- ./music:/music
- ./downloads:/downloads
```