Adding *arr and minor corrections
This commit is contained in:
parent
a8f2a9be44
commit
d416aafdfc
7 changed files with 115 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ services:
|
|||
- /mnt/media/Videos/Series:/Series
|
||||
- /mnt/media/Music:/Music
|
||||
- /mnt/media/Books:/Books
|
||||
restart: 'unless-stopped'
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- JELLYFIN_PublishedServerUrl=http://app-docker01.phiax.nl
|
||||
ports:
|
||||
|
|
|
|||
22
docker/lidarr.yaml
Normal file
22
docker/lidarr.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#####################################################################
|
||||
# #
|
||||
# Description: Lidarr is a self-hosted movie manager #
|
||||
# ReferenceURL: https://wiki.servarr.com/lidarr/installation/docker #
|
||||
# #
|
||||
#####################################################################
|
||||
|
||||
services:
|
||||
lidarr:
|
||||
image: lscr.io/linuxserver/lidarr:latest
|
||||
container_name: lidarr
|
||||
environment:
|
||||
- PUID=13003
|
||||
- PGID=1000
|
||||
- UMASK=002
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- /opt/config/lidarr-config:/config
|
||||
- /mnt/media:/volume1/media
|
||||
ports:
|
||||
- "8686:8686"
|
||||
restart: unless-stopped
|
||||
21
docker/prowlarr.yaml
Normal file
21
docker/prowlarr.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#######################################################################
|
||||
# #
|
||||
# Description: Prowlarr is a self-hosted movie manager #
|
||||
# ReferenceURL: https://wiki.servarr.com/prowlarr/installation/docker #
|
||||
# #
|
||||
#######################################################################
|
||||
|
||||
services:
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
container_name: prowlarr
|
||||
environment:
|
||||
- PUID=13006
|
||||
- PGID=1000
|
||||
- UMASK=002
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- /opt/config/prowlarr-config:/config
|
||||
ports:
|
||||
- "9696:9696"
|
||||
restart: unless-stopped
|
||||
22
docker/radarr.yaml
Normal file
22
docker/radarr.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#####################################################################
|
||||
# #
|
||||
# Description: Radarr is a self-hosted movie manager #
|
||||
# ReferenceURL: https://wiki.servarr.com/radarr/installation/docker #
|
||||
# #
|
||||
#####################################################################
|
||||
|
||||
services:
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
environment:
|
||||
- PUID=13002
|
||||
- PGID=1000
|
||||
- UMASK=002
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- /opt/config/radarr-config:/config
|
||||
- /mnt/media:/volume1/media
|
||||
ports:
|
||||
- "7878:7878"
|
||||
restart: unless-stopped
|
||||
|
|
@ -14,6 +14,7 @@ services:
|
|||
- /mnt/media/Emulation/library:/app/library
|
||||
- /mnt/media/Containers/retrom/config:/app/config/
|
||||
- retrom-db:/app/data/
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
retrom-db:
|
||||
|
|
|
|||
25
docker/slskd.yaml
Normal file
25
docker/slskd.yaml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#######################################################
|
||||
# #
|
||||
# Description: slskd is a self-hosted soulseek client #
|
||||
# ReferenceURL: https://github.com/slskd/slskd/ #
|
||||
# #
|
||||
#######################################################
|
||||
|
||||
services:
|
||||
slskd:
|
||||
image: slskd/slskd
|
||||
container_name: slskd
|
||||
user: 13003:1000
|
||||
environment:
|
||||
- TZ=Europe\Amsterdam
|
||||
- SLSKD_REMOTE_CONFIGURATION=true
|
||||
ports:
|
||||
- 5030:5030
|
||||
- 5031:5031
|
||||
- 6666:6666
|
||||
volumes:
|
||||
- /opt/config/slskd-config:/app
|
||||
- /mnt/media/Music:/data/Music
|
||||
- /mnt/media/Media_Import/complete:/complete
|
||||
- /mnt/media/Media_Import/complete:/incomplete
|
||||
restart: unless-stopped
|
||||
22
docker/sonarr.yaml
Normal file
22
docker/sonarr.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#####################################################################
|
||||
# #
|
||||
# Description: Sonarr is a self-hosted TV show manager #
|
||||
# ReferenceURL: https://wiki.servarr.com/sonarr/installation/docker #
|
||||
# #
|
||||
#####################################################################
|
||||
|
||||
services:
|
||||
sonarr:
|
||||
image: lscr.io/linuxserver/sonarr:latest
|
||||
container_name: sonarr
|
||||
environment:
|
||||
- PUID=13001
|
||||
- PGID=1000
|
||||
- UMASK=002
|
||||
- TZ=Europe/Amsterdam
|
||||
volumes:
|
||||
- /opt/config/sonarr-config:/config
|
||||
- /mnt/media:/volume1/media
|
||||
ports:
|
||||
- "8989:8989"
|
||||
restart: unless-stopped
|
||||
Loading…
Add table
Add a link
Reference in a new issue