Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 742 Bytes

README.md

File metadata and controls

30 lines (27 loc) · 742 Bytes

nAlpine (Alpine + Minidlna)

Simple minidlna server + control server for alpine linux

Virtual Box

  • Create Alpine linux virtual machine
  • Set two network devices
    • Nat (DHCP)
    • Bridge (Static IP)
  • Set auto mount local folder by the name "Media"
  • Run machine and setup alpine linux by "setup-alpine"
  • Run install script:
     wget -O - https://github.com/eyalezer/nAlpine/blob/main/install.sh?raw=true | sh

Docker

  • Change docker compose "volumes" section to mount your local media folder
  • Build and Run docker container
     # docker compose
     docker compose up -d
    
     # docker
     docker build -t nalpine .
     docker run -d \
     	-net=host \
     	-v $(pwd)/../media:/media/media \
     	--privileged \
     	--name nalpine nalpine