set EDITOR variable and add nano package

This commit is contained in:
sparklyballs 2016-10-01 10:47:42 +01:00
parent e2114dd608
commit 0ae30ad199
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@ MAINTAINER sparklyballs
# environment settings # environment settings
ENV BEETSDIR="/config" ENV BEETSDIR="/config"
ENV EDITOR="nano"
# install runtime packages # install runtime packages
RUN \ RUN \
@ -16,6 +17,7 @@ RUN \
lame \ lame \
libffi \ libffi \
libpng \ libpng \
nano \
openjpeg \ openjpeg \
py-pip \ py-pip \
python \ python \

View file

@ -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 Edit the config file in /config
To edit the config from within the container use `beet config -e`
## Info ## Info
* To monitor the logs of the container in realtime `docker logs -f beets`. * To monitor the logs of the container in realtime `docker logs -f beets`.
@ -63,6 +65,8 @@ Edit the config file in /config
## Versions ## 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. + **30.09.16:** Fix umask.
+ **24.09.16:** Rebase to alpine linux. + **24.09.16:** Rebase to alpine linux.
+ **10.09.16:** Add layer badges to README. + **10.09.16:** Add layer badges to README.