Sign inSign up

seuf/sonerezh

By seuf

Updated about 10 years ago

Sonerezh Music server image based on Alpine Linux

Image
0

327

seuf/sonerezh repository overview

Sonerezh

Sonerezh is a web app that allow you to listen your music everywhere.

Docker

This image is based on Alpine Linux. It require a mysql / mariadb server It will scan music From the /music directory, so it should be mounted as a volume

Docker Compose :

You can use docker-compose to launch sonerezh :

sonerezh:
    image: sonerezh
    hostname: sonerezh
    container_name: music
    volumes:
      - /data/sonerezh/thumbnails:/thumbnails
      - /home/seuf/Music:/music
    expose:
      - 80
    ports:
      - 80:80
    environment:
      DB_ENV_HOST: 'db_sonerezh:3306'
      DB_ENV_MYSQL_DATABASE: 'sonerezh'
      DB_ENV_MYSQL_USER: 'sonerezh'
      DB_ENV_MYSQL_PASSWORD: 'Sonerezh_user_password_here

  db_sonerezh:
    image: mariadb:10
    hostname: db_sonerezh
    container_name: db_sonerezh
    volumes:
      - /data/sonerezh/mariadb:/var/lib/mysql
    environment:
      MYSQL_ROOT_PASSWORD: 'mysql_root_password_here'
      MYSQL_DATABASE: 'sonerezh'
      MYSQL_USER: 'sonerezh'
      MYSQL_PASSWORD: 'Sonerezh_user_password_here'

Tag summary

Content type

Image

Digest

Size

40.3 MB

Last updated

about 10 years ago

docker pull seuf/sonerezh