OS: Ubuntu Xenial 16.04 (official) Installed:
- Logitech Media Server 7.9.1
- gmusicapi 11.0.0 python module
# docker run -d \
--name <name_for_container> \
--net=host \
-p 3483:3483 -p 9000:9000 -p 9090:9090 -p 3483:3483/udp \
-v <data_dir>:/config \
-v <music_dir>:/share/Music \
davewongillies/squeezebox:latest
If you've got docker-compose
installed:
# docker-compose up -d
By default it looks for config
and music
directories in the current directory. To start with other directories:
# docker-compose up -d -e LMS_CONFIG_DIR=<path_to_config_directory> -e LMS_MUSIC_DIR=<path_to_music_directory>