├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── entrypoint.sh └── start-squeezebox.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /start-squeezebox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/docker-image-logitech-media-server/HEAD/start-squeezebox.sh --------------------------------------------------------------------------------