From fc1f3f745a46f37b8a681d9121eb0ebf862e44ef Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 16 Jan 2017 03:44:53 +0000 Subject: [PATCH 1/4] add packages required for replaygain plugin --- Dockerfile | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index f0535b9..7134577 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ RUN \ ffmpeg \ ffmpeg-libs \ gdbm \ + gst-plugins-good1 \ gstreamer1 \ jpeg \ lame \ @@ -26,6 +27,7 @@ RUN \ nano \ openjpeg \ py-gobject \ + py-gobject3 \ py-pip \ python \ py-unidecode \ diff --git a/README.md b/README.md index 9fcd6b9..6624749 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) ## Versions ++ **16.01.17:** Add packages required for replaygain. + **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin. + **07.12.16:** Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib + **14.10.16:** Add version layer information. From e2ab1a53eb02ff3d73821a8dceb1eedfe78ed94f Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 16 Jan 2017 03:53:03 +0000 Subject: [PATCH 2/4] edit README and remove py-gobject in favour of py-gobject3 --- Dockerfile | 1 - README.md | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7134577..a50726d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,6 @@ RUN \ libpng \ nano \ openjpeg \ - py-gobject \ py-gobject3 \ py-pip \ python \ diff --git a/README.md b/README.md index 6624749..117ab0b 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,8 @@ Edit the config file in /config To edit the config from within the container use `beet config -e` +For a command prompt as user abc `docker exec -it -u abc beets bash` + See [Beets][beetsurl] for more info. Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin, [configuration details](https://github.com/sbarakat/beets-copyartifacts#configuration) From 2ce1899c62cd58ae54d3c3bf07adab12536af76d Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 16 Jan 2017 04:05:06 +0000 Subject: [PATCH 3/4] add home variable --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a50726d..84ef502 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,9 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" # environment settings -ENV BEETSDIR="/config" -ENV EDITOR="nano" +ENV BEETSDIR="/config" \ +EDITOR="nano" \ +HOME="/config" # install runtime packages RUN \ From 1f0b6735ebb385dfb02aaee1aef2f954bd7cbdea Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 16 Jan 2017 04:07:42 +0000 Subject: [PATCH 4/4] move env's to bottom of Dockerfile --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 84ef502..c6cbe2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,6 @@ ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -# environment settings -ENV BEETSDIR="/config" \ -EDITOR="nano" \ -HOME="/config" - # install runtime packages RUN \ apk add --no-cache \ @@ -88,6 +83,11 @@ RUN \ /root/.cache \ /tmp/* +# environment settings +ENV BEETSDIR="/config" \ +EDITOR="nano" \ +HOME="/config" + # copy local files COPY root/ /