From 0ae30ad199b85abcc7c1ade6628dfd6b5d228c04 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 1 Oct 2016 10:47:42 +0100 Subject: [PATCH] set EDITOR variable and add nano package --- Dockerfile | 2 ++ README.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index bfd3079..9fbc2c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ MAINTAINER sparklyballs # environment settings ENV BEETSDIR="/config" +ENV EDITOR="nano" # install runtime packages RUN \ @@ -16,6 +17,7 @@ RUN \ lame \ libffi \ libpng \ + nano \ openjpeg \ py-pip \ python \ diff --git a/README.md b/README.md index 8ecb5b4..75ab5b0 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel Edit the config file in /config +To edit the config from within the container use `beet config -e` + ## Info * To monitor the logs of the container in realtime `docker logs -f beets`. @@ -63,6 +65,8 @@ Edit the config file in /config ## Versions ++ **01.10.16:** Add nano and editor variable - +to allow editing of the config from the container command line. + **30.09.16:** Fix umask. + **24.09.16:** Rebase to alpine linux. + **10.09.16:** Add layer badges to README.