Sign inSign up

hmerritt/music-library-player

By hmerritt

Updated about 1 month ago

Self-hosted music player

Image
3

100K+

hmerritt/music-library-player repository overview

Music Player

Self-hosted music player.

- for those of us too stubborn to just use Spotify

Features

  • NBUI (not bad user-interface)
  • Live active users showing what other users are currently listening to
  • Fully mobile and tablet responsive
  • Sources tracks from file-system
  • Supported File Formats
    • MP3
    • FLAC
  • Uses track metadata - (falls-back to filename if no tags found)
    • Title
    • Artist
    • Album Artist
    • Album
    • Cover Art

How to setup

Pull from Docker Hub (the easy way :)
  1. Create a docker-compose.yml file
version: "3"

services:
  music-player:
    image: hmerritt/music-library-player:latest

    environment:
        - REACT_APP_HTTP=http
        - REACT_APP_HOST=localhost:7788
        - REACT_APP_API=http://localhost:7789

    ports:
      - 7788:80
      - 7789:8000

    volumes:
      - path-to-your-music:/app/music
      - /srv/music-library/data:/app/data
  1. Run docker image using docker-compose
$ docker-compose up

Tag summary

Content type

Image

Digest

sha256:fb22cfe47

Size

53.2 MB

Last updated

about 1 month ago

docker pull hmerritt/music-library-player