mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
Install chromaprint from repo, add beetcamp plugin
This commit is contained in:
parent
b76ceacec0
commit
cb9cc276ef
10 changed files with 64 additions and 61 deletions
|
|
@ -15,6 +15,6 @@ trim_trailing_whitespace = false
|
|||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
|
||||
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
|
|
|||
12
.github/workflows/call_invalid_helper.yml
vendored
Normal file
12
.github/workflows/call_invalid_helper.yml
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
name: Comment on invalid interaction
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- labeled
|
||||
jobs:
|
||||
add-comment-on-invalid:
|
||||
if: github.event.label.name == 'invalid'
|
||||
permissions:
|
||||
issues: write
|
||||
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
|
||||
secrets: inherit
|
||||
2
.github/workflows/greetings.yml
vendored
2
.github/workflows/greetings.yml
vendored
|
|
@ -8,6 +8,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/first-interaction@v1
|
||||
with:
|
||||
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-beets/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-beets/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
|
||||
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
|
||||
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-beets/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
9
.github/workflows/permissions.yml
vendored
Normal file
9
.github/workflows/permissions.yml
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
name: Permission check
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '**/run'
|
||||
- '**/finish'
|
||||
jobs:
|
||||
permission_check:
|
||||
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
|
||||
21
Dockerfile
21
Dockerfile
|
|
@ -13,11 +13,13 @@ RUN \
|
|||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies --upgrade \
|
||||
build-base \
|
||||
cairo-dev \
|
||||
cargo \
|
||||
cmake \
|
||||
ffmpeg-dev \
|
||||
fftw-dev \
|
||||
git \
|
||||
gobject-introspection-dev \
|
||||
jpeg-dev \
|
||||
libpng-dev \
|
||||
mpg123-dev \
|
||||
|
|
@ -25,9 +27,9 @@ RUN \
|
|||
python3-dev && \
|
||||
echo "**** install runtime packages ****" && \
|
||||
apk add --no-cache --upgrade \
|
||||
chromaprint \
|
||||
expat \
|
||||
ffmpeg \
|
||||
ffmpeg-libs \
|
||||
fftw \
|
||||
flac \
|
||||
gdbm \
|
||||
|
|
@ -40,8 +42,6 @@ RUN \
|
|||
mpg123 \
|
||||
nano \
|
||||
openjpeg \
|
||||
py3-gobject3 \
|
||||
py3-pylast \
|
||||
python3 \
|
||||
sqlite-libs && \
|
||||
echo "**** compile mp3gain ****" && \
|
||||
|
|
@ -49,7 +49,7 @@ RUN \
|
|||
/tmp/mp3gain-src && \
|
||||
curl -o \
|
||||
/tmp/mp3gain-src/mp3gain.zip -sL \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.1/mp3gain-1_6_1-src.zip && \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.2/mp3gain-1_6_2-src.zip && \
|
||||
cd /tmp/mp3gain-src && \
|
||||
unzip -qq /tmp/mp3gain-src/mp3gain.zip && \
|
||||
sed -i "s#/usr/local/bin#/usr/bin#g" /tmp/mp3gain-src/Makefile && \
|
||||
|
|
@ -65,16 +65,6 @@ RUN \
|
|||
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
|
||||
make -f Makefile.linux && \
|
||||
cp -p mp3val /usr/bin && \
|
||||
echo "**** compile chromaprint ****" && \
|
||||
git clone https://bitbucket.org/acoustid/chromaprint.git \
|
||||
/tmp/chromaprint && \
|
||||
cd /tmp/chromaprint && \
|
||||
cmake \
|
||||
-DBUILD_TOOLS=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
|
||||
make && \
|
||||
make install && \
|
||||
echo "**** install pip packages ****" && \
|
||||
if [ -z ${BEETS_VERSION+x} ]; then \
|
||||
BEETS_VERSION=$(curl -sL https://pypi.python.org/pypi/beets/json |jq -r '. | .info.version'); \
|
||||
|
|
@ -87,10 +77,13 @@ RUN \
|
|||
beautifulsoup4 \
|
||||
beets==${BEETS_VERSION} \
|
||||
beets-extrafiles \
|
||||
beetcamp \
|
||||
discogs-client \
|
||||
flask \
|
||||
PyGObject \
|
||||
pillow \
|
||||
pyacoustid \
|
||||
pylast \
|
||||
requests \
|
||||
unidecode && \
|
||||
echo "**** cleanup ****" && \
|
||||
|
|
|
|||
|
|
@ -13,11 +13,13 @@ RUN \
|
|||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies --upgrade \
|
||||
build-base \
|
||||
cairo-dev \
|
||||
cargo \
|
||||
cmake \
|
||||
ffmpeg-dev \
|
||||
fftw-dev \
|
||||
git \
|
||||
gobject-introspection-dev \
|
||||
jpeg-dev \
|
||||
libpng-dev \
|
||||
mpg123-dev \
|
||||
|
|
@ -25,6 +27,7 @@ RUN \
|
|||
python3-dev && \
|
||||
echo "**** install runtime packages ****" && \
|
||||
apk add --no-cache --upgrade \
|
||||
chromaprint \
|
||||
expat \
|
||||
ffmpeg \
|
||||
ffmpeg-libs \
|
||||
|
|
@ -40,8 +43,6 @@ RUN \
|
|||
mpg123 \
|
||||
nano \
|
||||
openjpeg \
|
||||
py3-gobject3 \
|
||||
py3-pylast \
|
||||
python3 \
|
||||
sqlite-libs && \
|
||||
echo "**** compile mp3gain ****" && \
|
||||
|
|
@ -49,7 +50,7 @@ RUN \
|
|||
/tmp/mp3gain-src && \
|
||||
curl -o \
|
||||
/tmp/mp3gain-src/mp3gain.zip -sL \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.1/mp3gain-1_6_1-src.zip && \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.2/mp3gain-1_6_2-src.zip && \
|
||||
cd /tmp/mp3gain-src && \
|
||||
unzip -qq /tmp/mp3gain-src/mp3gain.zip && \
|
||||
sed -i "s#/usr/local/bin#/usr/bin#g" /tmp/mp3gain-src/Makefile && \
|
||||
|
|
@ -65,16 +66,6 @@ RUN \
|
|||
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
|
||||
make -f Makefile.linux && \
|
||||
cp -p mp3val /usr/bin && \
|
||||
echo "**** compile chromaprint ****" && \
|
||||
git clone https://bitbucket.org/acoustid/chromaprint.git \
|
||||
/tmp/chromaprint && \
|
||||
cd /tmp/chromaprint && \
|
||||
cmake \
|
||||
-DBUILD_TOOLS=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
|
||||
make && \
|
||||
make install && \
|
||||
echo "**** install pip packages ****" && \
|
||||
if [ -z ${BEETS_VERSION+x} ]; then \
|
||||
BEETS_VERSION=$(curl -sL https://pypi.python.org/pypi/beets/json |jq -r '. | .info.version'); \
|
||||
|
|
@ -87,10 +78,13 @@ RUN \
|
|||
beautifulsoup4 \
|
||||
beets==${BEETS_VERSION} \
|
||||
beets-extrafiles \
|
||||
beetcamp \
|
||||
discogs-client \
|
||||
flask \
|
||||
PyGObject \
|
||||
pillow \
|
||||
pyacoustid \
|
||||
pylast \
|
||||
requests \
|
||||
unidecode && \
|
||||
echo "**** cleanup ****" && \
|
||||
|
|
|
|||
|
|
@ -13,11 +13,13 @@ RUN \
|
|||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies --upgrade \
|
||||
build-base \
|
||||
cairo-dev \
|
||||
cargo \
|
||||
cmake \
|
||||
ffmpeg-dev \
|
||||
fftw-dev \
|
||||
git \
|
||||
gobject-introspection-dev \
|
||||
jpeg-dev \
|
||||
libpng-dev \
|
||||
mpg123-dev \
|
||||
|
|
@ -25,6 +27,7 @@ RUN \
|
|||
python3-dev && \
|
||||
echo "**** install runtime packages ****" && \
|
||||
apk add --no-cache --upgrade \
|
||||
chromaprint \
|
||||
expat \
|
||||
ffmpeg \
|
||||
ffmpeg-libs \
|
||||
|
|
@ -40,8 +43,6 @@ RUN \
|
|||
mpg123 \
|
||||
nano \
|
||||
openjpeg \
|
||||
py3-gobject3 \
|
||||
py3-pylast \
|
||||
python3 \
|
||||
sqlite-libs && \
|
||||
echo "**** compile mp3gain ****" && \
|
||||
|
|
@ -49,7 +50,7 @@ RUN \
|
|||
/tmp/mp3gain-src && \
|
||||
curl -o \
|
||||
/tmp/mp3gain-src/mp3gain.zip -sL \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.1/mp3gain-1_6_1-src.zip && \
|
||||
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.6.2/mp3gain-1_6_2-src.zip && \
|
||||
cd /tmp/mp3gain-src && \
|
||||
unzip -qq /tmp/mp3gain-src/mp3gain.zip && \
|
||||
sed -i "s#/usr/local/bin#/usr/bin#g" /tmp/mp3gain-src/Makefile && \
|
||||
|
|
@ -65,16 +66,6 @@ RUN \
|
|||
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
|
||||
make -f Makefile.linux && \
|
||||
cp -p mp3val /usr/bin && \
|
||||
echo "**** compile chromaprint ****" && \
|
||||
git clone https://bitbucket.org/acoustid/chromaprint.git \
|
||||
/tmp/chromaprint && \
|
||||
cd /tmp/chromaprint && \
|
||||
cmake \
|
||||
-DBUILD_TOOLS=ON \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
|
||||
make && \
|
||||
make install && \
|
||||
echo "**** install pip packages ****" && \
|
||||
if [ -z ${BEETS_VERSION+x} ]; then \
|
||||
BEETS_VERSION=$(curl -sL https://pypi.python.org/pypi/beets/json |jq -r '. | .info.version'); \
|
||||
|
|
@ -87,10 +78,13 @@ RUN \
|
|||
beautifulsoup4 \
|
||||
beets==${BEETS_VERSION} \
|
||||
beets-extrafiles \
|
||||
beetcamp \
|
||||
discogs-client \
|
||||
flask \
|
||||
PyGObject \
|
||||
pillow \
|
||||
pyacoustid \
|
||||
pylast \
|
||||
requests \
|
||||
unidecode && \
|
||||
echo "**** cleanup ****" && \
|
||||
|
|
|
|||
26
Jenkinsfile
vendored
26
Jenkinsfile
vendored
|
|
@ -57,7 +57,7 @@ pipeline {
|
|||
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
|
||||
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
|
||||
env.PULL_REQUEST = env.CHANGE_ID
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
|
||||
}
|
||||
script{
|
||||
env.LS_RELEASE_NUMBER = sh(
|
||||
|
|
@ -805,19 +805,19 @@ pipeline {
|
|||
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
|
||||
if [ "${CI}" == "false" ]; then
|
||||
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}
|
||||
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
|
||||
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG}
|
||||
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
|
||||
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
|
||||
fi
|
||||
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
|
||||
docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG}
|
||||
docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG}
|
||||
docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
|
||||
docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-latest
|
||||
docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest
|
||||
docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest
|
||||
docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG}
|
||||
docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG}
|
||||
docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-latest
|
||||
docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG}
|
||||
docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
|
||||
docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest
|
||||
docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
|
||||
if [ -n "${SEMVER}" ]; then
|
||||
docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER}
|
||||
|
|
@ -825,13 +825,13 @@ pipeline {
|
|||
docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER}
|
||||
fi
|
||||
docker push ${MANIFESTIMAGE}:amd64-${META_TAG}
|
||||
docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG}
|
||||
docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG}
|
||||
docker push ${MANIFESTIMAGE}:amd64-latest
|
||||
docker push ${MANIFESTIMAGE}:arm32v7-latest
|
||||
docker push ${MANIFESTIMAGE}:arm64v8-latest
|
||||
docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG}
|
||||
docker push ${MANIFESTIMAGE}:amd64-latest
|
||||
docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG}
|
||||
docker push ${MANIFESTIMAGE}:arm32v7-latest
|
||||
docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG}
|
||||
docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG}
|
||||
docker push ${MANIFESTIMAGE}:arm64v8-latest
|
||||
docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
|
||||
if [ -n "${SEMVER}" ]; then
|
||||
docker push ${MANIFESTIMAGE}:amd64-${SEMVER}
|
||||
|
|
@ -977,12 +977,12 @@ pipeline {
|
|||
sh 'echo "build aborted"'
|
||||
}
|
||||
else if (currentBuild.currentResult == "SUCCESS"){
|
||||
sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\
|
||||
sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\
|
||||
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
|
||||
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
|
||||
}
|
||||
else {
|
||||
sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\
|
||||
sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\
|
||||
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
|
||||
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
|
||||
}
|
||||
|
|
|
|||
11
README.md
11
README.md
|
|
@ -56,7 +56,7 @@ The architectures supported by this image are:
|
|||
| :----: | :----: | ---- |
|
||||
| x86-64 | ✅ | amd64-\<version tag\> |
|
||||
| arm64 | ✅ | arm64v8-\<version tag\> |
|
||||
| armhf| ✅ | arm32v7-\<version tag\> |
|
||||
| armhf | ✅ | arm32v7-\<version tag\> |
|
||||
|
||||
## Version Tags
|
||||
|
||||
|
|
@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th
|
|||
| :----: | :----: |--- |
|
||||
| latest | ✅ | Stable Beets Releases |
|
||||
| nightly | ✅ | Built against head of Beets git, generally considered unstable but a likely choice for power users of the application. |
|
||||
|
||||
## Application Setup
|
||||
|
||||
Edit the config file in /config
|
||||
|
|
@ -95,7 +94,7 @@ services:
|
|||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/London
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- </path/to/appdata/config>:/config
|
||||
- </path/to/music/library>:/music
|
||||
|
|
@ -112,13 +111,14 @@ docker run -d \
|
|||
--name=beets \
|
||||
-e PUID=1000 \
|
||||
-e PGID=1000 \
|
||||
-e TZ=Europe/London \
|
||||
-e TZ=Etc/UTC \
|
||||
-p 8337:8337 \
|
||||
-v </path/to/appdata/config>:/config \
|
||||
-v </path/to/music/library>:/music \
|
||||
-v </path/to/ingest>:/downloads \
|
||||
--restart unless-stopped \
|
||||
lscr.io/linuxserver/beets:latest
|
||||
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
|
@ -130,7 +130,7 @@ Container images are configured using parameters passed at runtime (such as thos
|
|||
| `-p 8337` | Application WebUI |
|
||||
| `-e PUID=1000` | for UserID - see below for explanation |
|
||||
| `-e PGID=1000` | for GroupID - see below for explanation |
|
||||
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
|
||||
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
|
||||
| `-v /config` | Configuration files. |
|
||||
| `-v /music` | Music library |
|
||||
| `-v /downloads` | Non processed music |
|
||||
|
|
@ -244,6 +244,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
|||
|
||||
## Versions
|
||||
|
||||
* **24.02.23:** - Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin.
|
||||
* **15.01.22:** - Rebasing to alpine 3.15.
|
||||
* **19.12.19:** - Rebasing to alpine 3.11.
|
||||
* **28.06.19:** - Rebasing to alpine 3.10.
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ app_setup_block: |
|
|||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "24.12.22:", desc: "Rebasing to alpine 3.17." }
|
||||
- { date: "24.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin." }
|
||||
- { date: "15.01.22:", desc: "Rebasing to alpine 3.15." }
|
||||
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
|
||||
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
|
||||
|
|
|
|||
Loading…
Reference in a new issue