No description
Find a file
sparklyballs a2116e95dc changelog
2015-11-29 06:48:49 +00:00
defaults checkstyle fixing 2015-10-16 12:59:16 +01:00
init add pillow for plugins related to artwork, Closes #2 2015-11-17 02:45:45 +00:00
services/beets test up new build dependencies and app from pip 2015-10-16 12:07:15 +01:00
Dockerfile unset TERM=screen inherited from baseimage, seems to be causing issues for some with interactive key entry with beet import 2015-11-29 06:46:58 +00:00
README.md changelog 2015-11-29 06:48:49 +00:00

http://linuxserver.io

The LinuxServer.io team brings you another quality container release featuring auto-update on startup, easy user mapping and community support. Be sure to checkout our forums or for real-time support our IRC on freenode at #linuxserver.io.

linuxserver/beets

Beets is a music library manager—not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.

Usage

docker create --name=beets -v /etc/localtime:/etc/localtime:ro -v <path to data>:/config -e PGID=<gid> -e PUID=<uid>  -p 1234:1234 linuxserver/<container-name>

Parameters

  • -p 8337 - the port(s)
  • -v /etc/localtime for timesync - optional
  • -v /config - Configuration files
  • -v /music - Music library location
  • -v /downloads - Non-processed music
  • -e PGID for GroupID - see below for explanation
  • -e PUID for UserID - see below for explanation

It is based on phusion-baseimage with ssh removed, for shell access whilst the container is running do docker exec -it <container-name> /bin/bash.

User / Group Identifiers

TL;DR - The PGID and PUID values set the user / group you'd like your container to 'run as' to the host OS. This can be a user you've created or even root (not recommended).

Part of what makes our containers work so well is by allowing you to specify your own PUID and PGID. This avoids nasty permissions errors with relation to data volumes (-v flags). When an application is installed on the host OS it is normally added to the common group called users, Docker apps due to the nature of the technology can't be added to this group. So we added this feature to let you easily choose when running your containers.

Setting up the application

Edit the config file in /config

Updates

  • Upgrade to the latest version simply docker restart beets.
  • To monitor the logs of the container in realtime docker logs -f beets.

Versions

  • 06.11.2015: Initial Release
  • 29.11.2015: Take out term setting, causing issues with key entry for some users