larsks / docker-image-logitech-media-server

MIT License
33 stars 74 forks source link

REQ: Update 7.9.1 #17

Closed RHCPNG closed 6 years ago

RHCPNG commented 6 years ago

Is it possible to update the docker to the latest version, 7.9.1? I would very much appreciate it.

Thanks!

suchomar commented 6 years ago

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!

larsks commented 6 years ago

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).