This image contains an implementation of a MusicDown server in Python.
You can also create your own MusicDown server implementation if needed, more information here https://koizeay.com/static/musicdown/instructions.html
MusicDown is a mobile app allowing you to listen to and download audio files from your own server on your mobile phone.
/data containing all your .mp3 files (with at least title and artist ID3 tags, if the tags are missing, it won't work) in a music folder is required/data, the default password is hackme (used by the app)25250docker run -d \
--name musicdown \
-p 80:25250 \
-v /volumes/musicdown:/data \
--restart unless-stopped \
koizeay/musicdown:latest
services:
musicdown:
image: koizeay/musicdown:latest
container_name: musicdown
ports:
- "80:25250"
volumes:
- /volumes/musicdown:/data
restart: unless-stopped
/data/
├── music/
│ ├── music1.mp3
│ ├── music2.mp3
│ ├── music3.mp3
│ └── ... (all your MP3 files here)
└── password.txt
Download here https://jtu.me/musicdown
You can contact me via [email protected], but please check this page before https://koizeay.com/static/musicdown/instructions.html
Content type
Image
Digest
sha256:022c659b3…
Size
400.1 MB
Last updated
6 months ago
docker pull koizeay/musicdown