REQ: Update 7.9.1
RHCPNG opened this issue · 2 comments
Is it possible to update the docker to the latest version, 7.9.1? I would very much appreciate it.
Thanks!
Hi,
I'm testing 7.9.1 right now, it's quite easy to generate docker image on your own.
Clone this repository:
git clone https://github.com/larsks/docker-image-logitech-media-server.git
cd cloned repo:
cd docker-image-logitech-media-server
edit Dockerfile and change version in
ENV PACKAGE_VERSION_URL=http://www.mysqueezebox.com/update/?version=7.9.0&revision=1&geturl=1&os=deb
to 7.9.1
ENV PACKAGE_VERSION_URL=http://www.mysqueezebox.com/update/?version=7.9.1&revision=1&geturl=1&os=deb
build Docker image:
sudo docker build -t logitech-media-server .
and run:
sudo docker run -d --init \
-p 9000:9000 \
-p 9090:9090 \
-p 3483:3483 \
-p 3483:3483/udp \
-v /etc/localtime:/etc/localtime:ro \
-v <local-state-dir>:/srv/squeezebox \
-v <audio-dir>:/srv/music \
logitech-media-server
don't forget to replace <local-state-dir>
and <audio-dir>
with your paths :)
Have fun!
I've updated the 7.9 tag (docker pull larsks/logitech-media-server:7.9
) to the latest nightly release (logitechmediaserver_7.9.1~1509357021_all.deb
).