Sign inSign up

koizeay/musicdown

By koizeay

•Updated 6 months ago

Image
0

345

koizeay/musicdown repository overview

⁠About

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.

⁠How to use this image ?

  • A volume mounted to /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
  • To change the password, create a file "password.txt" in you volume mounted at /data, the default password is hackme (used by the app)
  • The port used in the container is 25250
  • Download the MusicDown app (available on Android and iOS) to enjoy your MusicDown server, note that you will need to press the "Reload" button in the app each time you add new MP3 files

⁠Docker run (command)

docker run -d \
  --name musicdown \
  -p 80:25250 \
  -v /volumes/musicdown:/data \
  --restart unless-stopped \
  koizeay/musicdown:latest

⁠Docker compose (YAML)

services:
  musicdown:
    image: koizeay/musicdown:latest
    container_name: musicdown
    ports:
      - "80:25250"
    volumes:
      - /volumes/musicdown:/data
    restart: unless-stopped

⁠Volume content

/data/
├── music/
│   ├── music1.mp3
│   ├── music2.mp3
│   ├── music3.mp3
│   └── ... (all your MP3 files here)
└── password.txt

⁠Mobile app

Download here https://jtu.me/musicdown⁠

⁠FAQ and contact

You can contact me via [email protected]⁠, but please check this page before https://koizeay.com/static/musicdown/instructions.html⁠

Tag summary

Content type

Image

Digest

sha256:022c659b3…

Size

400.1 MB

Last updated

6 months ago

docker pull koizeay/musicdown