From c94cfe4ed9d64b3937889de5f0a0ac4d94a3df0b Mon Sep 17 00:00:00 2001 From: Wouter Habets Date: Sun, 24 Jun 2018 14:33:32 +0200 Subject: [PATCH] Remove Mopidy-Youtube --- Dockerfile | 5 +---- README.md | 1 - entrypoint.sh | 11 ++++++++++- test.sh | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c3e35a..c3075eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER Wouter Habets (wouterhabets@gmail.com) RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \ - curl \ + curl gnupg \ && curl -L https://apt.mopidy.com/mopidy.gpg -o /tmp/mopidy.gpg \ && curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \ && apt-key add /tmp/mopidy.gpg \ @@ -16,8 +16,6 @@ RUN apt-get update \ mopidy-spotify-tunigo \ mopidy-tunein \ git \ - gstreamer0.10-plugins-bad \ - gstreamer0.10-alsa \ gstreamer1.0-libav \ python-crypto \ python-setuptools @@ -26,7 +24,6 @@ RUN curl -L https://bootstrap.pypa.io/get-pip.py | python - RUN pip install --ignore-installed Mopidy-Iris RUN pip install -U six \ && pip install markerlib \ - && pip install Mopidy-YouTube \ && pip install Mopidy-Local-SQLite \ && pip install Mopidy-Local-Images \ && pip install Mopidy-Party \ diff --git a/README.md b/README.md index 237b16d..3cf6768 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ Uses Pulseaudio for audio output. ### Backend extensions * Spotify * Spotify tunigo -* Youtube * Soundcloud * Scrobbler * Tunein diff --git a/entrypoint.sh b/entrypoint.sh index db4ad41..5094235 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,7 +1,16 @@ #!/bin/bash -echo $PWD +echo "WARNING. Mopidy-Youtube is removed." +echo "There are a lot of issues with it and there is currently no maintainer." +echo "I'll add it back once there is a mainainer found for the package." +echo "" +echo "" +echo "Starting container..." +echo "Current user: $(whoami)" +echo "Current user id: $(id -u $(whoami))" cd ~ echo $PWD ls -lsa +echo "" +echo "" exec /usr/bin/mopidy --config /etc/mopidy.conf:/mopidy.conf diff --git a/test.sh b/test.sh index 5eec660..cd9082c 100755 --- a/test.sh +++ b/test.sh @@ -2,7 +2,7 @@ docker run \ --rm \ --name mopidy \ - -e PULSE_SERVER=tcp:10.10.0.1:4713 \ + -e PULSE_SERVER=tcp:10.10.10.10:4713 \ -v /home/wouter/Muziek/Spotify:/media:ro \ -v $PWD/test-data:/var/lib/mopidy \ -v $PWD/accounts.conf:/mopidy.conf \