mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
add version layer information
This commit is contained in:
parent
1c50d77b4e
commit
87da0416a0
2 changed files with 15 additions and 1 deletions
|
|
@ -1,6 +1,11 @@
|
||||||
FROM lsiobase/alpine
|
FROM lsiobase/alpine
|
||||||
MAINTAINER sparklyballs
|
MAINTAINER sparklyballs
|
||||||
|
|
||||||
|
# set version label
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG VERSION
|
||||||
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||||
|
|
||||||
# environment settings
|
# environment settings
|
||||||
ENV BEETSDIR="/config"
|
ENV BEETSDIR="/config"
|
||||||
ENV EDITOR="nano"
|
ENV EDITOR="nano"
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -11,7 +11,7 @@ The [LinuxServer.io][linuxserverurl] team brings you another container release f
|
||||||
* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
|
* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation!
|
||||||
|
|
||||||
# linuxserver/beets
|
# linuxserver/beets
|
||||||
[](http://microbadger.com/images/linuxserver/beets "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-beets/)
|
[](https://microbadger.com/images/linuxserver/beets "Get your own version badge on microbadger.com")[](http://microbadger.com/images/linuxserver/beets "Get your own image badge on microbadger.com")[][hub][][hub][](http://jenkins.linuxserver.io:8080/job/Dockers/job/LinuxServer.io/job/linuxserver-beets/)
|
||||||
[hub]: https://hub.docker.com/r/linuxserver/beets/
|
[hub]: https://hub.docker.com/r/linuxserver/beets/
|
||||||
|
|
||||||
[Beets][beetsurl] is a music library manager and not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.
|
[Beets][beetsurl] is a music library manager and not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.
|
||||||
|
|
@ -64,9 +64,18 @@ See [Beets][beetsurl] for more 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`.
|
||||||
|
|
||||||
|
* container version number
|
||||||
|
|
||||||
|
`docker inspect -f '{{ index .Config.Labels "build_version" }}' beets`
|
||||||
|
|
||||||
|
* image version number
|
||||||
|
|
||||||
|
`docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/beets`
|
||||||
|
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
+ **14-10-16:** Add version layer information.
|
||||||
+ **01.10.16:** Add nano and editor variable -
|
+ **01.10.16:** Add nano and editor variable -
|
||||||
to allow editing of the config from the container command line.
|
to allow editing of the config from the container command line.
|
||||||
+ **30.09.16:** Fix umask.
|
+ **30.09.16:** Fix umask.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue