mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-01-18 08:15:34 +01:00
Add Lidarr and miniDLNA
This commit is contained in:
parent
3f4610cf3e
commit
77f3365447
@ -32,6 +32,11 @@ BW_ADMIN_TOKEN=
|
||||
# jellyfin
|
||||
JF_RENDER_GROUP=
|
||||
|
||||
# minidlna
|
||||
MINIDLNA_PORT=
|
||||
MINIDLNA_MEDIA_DIR=
|
||||
MINIDLNA_FRIENDLY_NAME=
|
||||
|
||||
# duplicati
|
||||
DUPLICATI_UID=
|
||||
DUPLICATI_GID=
|
||||
|
@ -23,6 +23,18 @@ services:
|
||||
- /dev/dri/card0:/dev/dri/card0
|
||||
restart: unless-stopped
|
||||
|
||||
minidlna:
|
||||
image: vladgh/minidlna
|
||||
container_name: minidlna
|
||||
# You need to run the container in host mode for it to be able to receive UPnP broadcast packets.
|
||||
network_mode: host
|
||||
environment:
|
||||
- MINIDLNA_PORT=${MINIDLNA_PORT}
|
||||
- MINIDLNA_MEDIA_DIR=${MINIDLNA_MEDIA_DIR}
|
||||
- MINIDLNA_FRIENDLY_NAME=${MINIDLNA_FRIENDLY_NAME}
|
||||
volumes:
|
||||
- ${DATA_DIR}/media/music:/media
|
||||
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:4.3.2
|
||||
container_name: radarr
|
||||
@ -89,6 +101,23 @@ services:
|
||||
- 6767:6767
|
||||
restart: unless-stopped
|
||||
|
||||
lidarr:
|
||||
image: lscr.io/linuxserver/lidarr
|
||||
container_name: lidarr
|
||||
networks:
|
||||
- media
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TIMEZONE}
|
||||
volumes:
|
||||
- ${APPS_DIR}/lidarr:/config
|
||||
- ${DATA_DIR}/media/music:/music
|
||||
- ${DATA_DIR}/downloads:/downloads
|
||||
ports:
|
||||
- 8686:8686
|
||||
restart: unless-stopped
|
||||
|
||||
delugevpn:
|
||||
image: binhex/arch-delugevpn
|
||||
container_name: delugevpn
|
||||
|
Loading…
Reference in New Issue
Block a user