Initial commit
All checks were successful
Update Docker Hub Description / dockerHubDescription (push) Successful in 13s
Docker Image CI / build_docker_images (push) Successful in 13m50s

This commit is contained in:
2025-11-11 16:53:46 +01:00
committed by GianLuca Vagnuzzi
commit 11f6ebcab8
9 changed files with 981 additions and 0 deletions

20
compose.yml Normal file
View File

@@ -0,0 +1,20 @@
# "A" for audio (eg. media_1=A,/home/jmaggard/Music)
# "V" for video (eg. media_2=V,/home/jmaggard/Videos)
# "P" for images (eg. media_3=P,/home/jmaggard/Pictures)
# "PV" for pictures and video (eg. media[1]=PV,/home/jmaggard/digital_camera)
# NOTE: for more media folder, increment a number after _, as in the lines commented below
services:
minidlna:
image: rardcode/minidlna
container_name: minidlna
environment:
- media_1=P,/media/multimedia/photos
volumes:
- /srv/multimedia:/media/multimedia
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
# You need to run the container in host mode for it to be able to receive UPnP broadcast packets. The default bridge mode will not work.
network_mode: host
restart: unless-stopped