services: add Lidarr
This commit is contained in:
parent
824e59b3b4
commit
164e4fe2d8
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@
|
|||
/radarr
|
||||
/bazarr
|
||||
/quassel
|
||||
/lidarr
|
||||
|
|
|
@ -276,6 +276,28 @@ services:
|
|||
- "default"
|
||||
- "proxy-tier"
|
||||
|
||||
lidarr:
|
||||
image: linuxserver/lidarr
|
||||
container_name: lidarr
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- VIRTUAL_HOST=lidarr.belanyi.fr
|
||||
- LETSENCRYPT_HOST=lidarr.belanyi.fr
|
||||
- LETSENCRYPT_EMAIL=brunobelanyi@gmail.com
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
- UMASK_SET=022 #optional
|
||||
volumes:
|
||||
- ./lidarr:/config
|
||||
- ~/music:/music
|
||||
- ~/downloads:/downloads
|
||||
ports:
|
||||
- 8686:8686
|
||||
networks:
|
||||
- "default"
|
||||
- "proxy-tier"
|
||||
|
||||
quassel-core:
|
||||
image: linuxserver/quassel-core
|
||||
container_name: quassel-core
|
||||
|
|
Reference in a new issue