A docker image for the music management program Beets. This image will start the beets web daemon in the container. You will also need to mount your music library inside the container, as well as any paths you wish to import music from.
Interacting with the beets database is simple, just use docker exec. For example, to get a full list of the library:
docker exec -ti beets beet ls
Or to import an album, assuming you are using the run command found below:
docker exec -ti beets beet import /import
docker run -d --name beets --restart=on-failure:10 -v /host/path/to/config:/config -v /mnt/music:/music -v /mnt/imports:/import -p 8337:8337 spritsail/beets