Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated for 7.9.1 #3

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions Dockerfile
@@ -1,19 +1,19 @@

# Logitechmediaserver 7.8.0
# Logitechmediaserver 7.9.1
#
#
FROM ubuntu:14.04
MAINTAINER Tom Deckers <tom@ducbase.com>

RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get -y install supervisor wget git
RUN apt-get -y update \
&& apt-get -y upgrade \
&& apt-get -y install supervisor wget git libio-socket-ssl-perl flac

# Install logitechmediaserver
#############################

RUN wget -O /tmp/logitechmediaserver_7.8.0_all.deb http://downloads.slimdevices.com/LogitechMediaServer_v7.8.0/logitechmediaserver_7.8.0_all.deb
RUN dpkg -i /tmp/logitechmediaserver_7.8.0_all.deb
RUN wget -O /tmp/logitechmediaserver_all.deb \
$(wget -q -O - "http://www.mysqueezebox.com/update/?version=7.9.1&revision=1&geturl=1&os=deb") \
&& dpkg -i /tmp/logitechmediaserver_all.deb

# Add pipework to wait for network if needed
ADD files/pipework /usr/local/bin/pipework
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
Overview
========

Docker image for Logitechmediaserver (7.8.0).
Docker image for Logitechmediaserver (7.9.1).

Building
========
Expand Down