Compare commits

..

19 commits

Author SHA1 Message Date
LinuxServer-CI
8c83a56e3b Bot Updating Templated Files 2019-05-28 13:46:15 +00:00
LinuxServer-CI
7313b9ec93 Bot Updating Templated Files 2019-05-28 09:45:14 -04:00
LinuxServer-CI
24c115b879 Bot Updating Package Versions 2019-05-12 12:08:48 -04:00
LinuxServer-CI
6dd5444f7d Bot Updating Package Versions 2019-05-08 12:07:29 +01:00
LinuxServer-CI
0a682f4aed Bot Updating Package Versions 2019-05-03 21:59:19 +01:00
LinuxServer-CI
1a597d8930 Bot Updating Templated Files 2019-05-03 16:38:07 -04:00
LinuxServer-CI
b89437914b Bot Updating Package Versions 2019-03-24 23:21:02 +01:00
aptalca
9465b5e77f
Merge pull request #51 from thelamer/nightly
Switching to new Base images, shift to arm32v7 tag.
2019-03-24 18:12:17 -04:00
thelamer
74fb06f58e Switching to new Base images, shift to arm32v7 tag. 2019-03-23 19:40:04 -07:00
sparklyballs
4280767abb add QEMU to runtime stages arm** 2019-03-11 19:55:06 +00:00
sparklyballs
5bf7ede168 clean up GEN jenkins file 2019-03-11 13:05:30 +00:00
sparklyballs
218b9e5462 patched wrong arch, oops... 2019-03-11 13:01:19 +00:00
LinuxServer-CI
705c417c10 Bot Updating Templated Files 2019-03-11 08:16:55 -04:00
sparklyballs
d973e96238 push up multi arch, with temporary bandaid fix for armhf 2019-03-11 12:14:14 +00:00
sparklyballs
81755646e2 push up nasty bandaid fix for armhf, using python3 lib alpine:3.8 2019-03-11 12:10:49 +00:00
sparklyballs
75a5acdb28 push up potential temporary bandaid for armhf 2019-03-11 11:59:16 +00:00
LinuxServer-CI
86dff1d4ae Bot Updating Package Versions 2019-03-11 11:00:10 +00:00
sparklyballs
b6f9298dcd non multiarch Jenkinsfile, armhf python3 is fubar 2019-03-11 10:57:31 +00:00
sparklyballs
6bce4e841d try not being multiarch and calling branch nightly 2019-03-11 10:56:00 +00:00
40 changed files with 1260 additions and 2358 deletions

View file

@ -1,20 +0,0 @@
# This file is globally distributed to all container image projects from
# https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# trim_trailing_whitespace may cause unintended issues and should not be globally set true
trim_trailing_whitespace = false
[{Dockerfile*,**.yml}]
indent_style = space
indent_size = 2
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
indent_style = space
indent_size = 4

View file

@ -1,123 +0,0 @@
# Contributing to beets
## Gotchas
* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open.
* Read, and fill the Pull Request template
* If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
* If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message
* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord)
## Common files
| File | Use case |
| :----: | --- |
| `Dockerfile` | Dockerfile used to build amd64 images |
| `Dockerfile.aarch64` | Dockerfile used to build 64bit ARM architectures |
| `Dockerfile.armhf` | Dockerfile used to build 32bit ARM architectures |
| `Jenkinsfile` | This file is a product of our builder and should not be edited directly. This is used to build the image |
| `jenkins-vars.yml` | This file is used to generate the `Jenkinsfile` mentioned above, it only affects the build-process |
| `package_versions.txt` | This file is generated as a part of the build-process and should not be edited directly. It lists all the installed packages and their versions |
| `README.md` | This file is a product of our builder and should not be edited directly. This displays the readme for the repository and image registries |
| `readme-vars.yml` | This file is used to generate the `README.md` |
## Readme
If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit.
Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-beets/edit/master/readme-vars.yml).
These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play.
Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-beets)
### Fixing typos or clarify the text in the readme
There are variables for multiple parts of the readme, the most common ones are:
| Variable | Description |
| :----: | --- |
| `project_blurb` | This is the short excerpt shown above the project logo. |
| `app_setup_block` | This is the text that shows up under "Application Setup" if enabled |
### Parameters
The compose and run examples are also generated from these variables.
We have a [reference file](https://github.com/linuxserver/docker-jenkins-builder/blob/master/vars/_container-vars-blank) in our Jenkins Builder.
These are prefixed with `param_` for required parameters, or `opt_param` for optional parameters, except for `cap_add`.
Remember to enable param, if currently disabled. This differs between parameters, and can be seen in the reference file.
Devices, environment variables, ports and volumes expects its variables in a certain way.
### Devices
```yml
param_devices:
- { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" }
opt_param_devices:
- { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" }
```
### Environment variables
```yml
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
opt_param_env_vars:
- { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number." }
```
### Ports
```yml
param_ports:
- { external_port: "80", internal_port: "80", port_desc: "Application WebUI" }
opt_param_ports:
- { external_port: "80", internal_port: "80", port_desc: "Application WebUI" }
```
### Volumes
```yml
param_volumes:
- { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Configuration files." }
opt_param_volumes:
- { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Configuration files." }
```
### Testing template changes
After you make any changes to the templates, you can use our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) to have the files updated from the modified templates. Please use the command found under `Running Locally` [on this page](https://github.com/linuxserver/docker-jenkins-builder/blob/master/README.md) to generate them prior to submitting a PR.
## Dockerfiles
We use multiple Dockerfiles in our repos, this is because sometimes some CPU architectures needs different packages to work.
If you are proposing additional packages to be added, ensure that you added the packages to all the Dockerfiles in alphabetical order.
### Testing your changes
```bash
git clone https://github.com/linuxserver/docker-beets.git
cd docker-beets
docker build \
--no-cache \
--pull \
-t linuxserver/beets:latest .
```
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
```bash
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
```
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
## Update the changelog
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-beets/tree/master/root), add an entry to the changelog
```yml
changelogs:
- { date: "DD.MM.YY:", desc: "Added some love to templates" }
```

2
.github/FUNDING.yml vendored
View file

@ -1,2 +0,0 @@
github: linuxserver
open_collective: linuxserver

21
.github/ISSUE_TEMPLATE.md vendored Normal file
View file

@ -0,0 +1,21 @@
<!--- Provide a general summary of the issue in the Title above -->
[linuxserverurl]: https://linuxserver.io
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
<!--- If you have an issue with the project, please provide us with the following information -->
<!--- Host OS -->
<!--- Command line users, your run/create command, GUI/Unraid users, a screenshot of your template settings. -->
<!--- Docker log output, docker log <container-name> -->
<!--- Mention if you're using symlinks on any of the volume mounts. -->
<!--- If you have a suggestion or fix for the project, please provide us with the following information -->
<!--- What you think your suggestion brings to the project, or fixes with the project -->
<!--- If it's a fix, would it be better suited as a Pull request to the repo ? -->
## Thanks, team linuxserver.io

View file

@ -1,13 +0,0 @@
blank_issues_enabled: false
contact_links:
- name: Discord chat support
url: https://linuxserver.io/discord
about: Realtime support / chat with the community and the team.
- name: Discourse discussion forum
url: https://discourse.linuxserver.io
about: Post on our community forum.
- name: Documentation
url: https://docs.linuxserver.io/images/docker-beets
about: Documentation - information about all of our containers.

View file

@ -1,76 +0,0 @@
# Based on the issue template
name: Bug report
description: Create a report to help us improve
title: "[BUG] <title>"
labels: [Bug]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: Tell us what happens instead of the expected behavior.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: Tell us what should happen.
validations:
required: false
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true
- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **How docker service was installed**: distro's packagemanager
value: |
- OS:
- How docker service was installed:
render: markdown
validations:
required: false
- type: dropdown
attributes:
label: CPU architecture
options:
- x86-64
- arm64
validations:
required: true
- type: textarea
attributes:
label: Docker creation
description: |
Command used to create docker container
Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container
render: bash
validations:
required: true
- type: textarea
attributes:
description: |
Provide a full docker log, output of "docker logs beets"
label: Container logs
placeholder: |
Output of `docker logs beets`
render: bash
validations:
required: true

View file

@ -1,31 +0,0 @@
# Based on the issue template
name: Feature request
description: Suggest an idea for this project
title: "[FEAT] <title>"
labels: [enhancement]
body:
- type: checkboxes
attributes:
label: Is this a new feature request?
description: Please search to see if a feature request already exists.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Wanted change
description: Tell us what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: Reason for change
description: Justify your request, why do you want it, what is the benefit.
validations:
required: true
- type: textarea
attributes:
label: Proposed code change
description: Do you have a potential code change in mind?
validations:
required: false

View file

@ -6,38 +6,10 @@
<!--- Before submitting a pull request please check the following --> <!--- Before submitting a pull request please check the following -->
<!--- If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR --> <!--- That you have made a branch in your fork, we'd rather not merge from your master -->
<!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ -->
<!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message -->
<!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message -->
<!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate --> <!--- -->
## Thanks, team linuxserver.io
<!--- Coding guidelines: -->
<!--- 1. Installed packages in the Dockerfiles should be in alphabetical order -->
<!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable -->
<!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document -->
<!--- 4. Readme is auto generated from readme-vars.yml, make your changes there -->
------------------------------
- [ ] I have read the [contributing](https://github.com/linuxserver/docker-beets/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
------------------------------
<!--- We welcome all PRs though this doesnt guarantee it will be accepted. -->
## Description:
<!--- Describe your changes in detail -->
## Benefits of this PR and context:
<!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # -->
## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
## Source / References:
<!--- Please include any forum posts/github links relevant to the PR -->

View file

@ -1,19 +0,0 @@
name: Issue & PR Tracker
on:
issues:
types: [opened,reopened,labeled,unlabeled,closed]
pull_request_target:
types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled,closed]
pull_request_review:
types: [submitted,edited,dismissed]
permissions:
contents: read
jobs:
manage-project:
permissions:
issues: write
uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1
secrets: inherit

View file

@ -1,16 +0,0 @@
name: Mark stale issues and pull requests
on:
schedule:
- cron: '34 14 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
stale:
permissions:
issues: write
pull-requests: write
uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1
secrets: inherit

View file

@ -1,147 +0,0 @@
name: External Trigger Main
on:
workflow_dispatch:
permissions:
contents: read
jobs:
external-trigger-master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: External Trigger
if: github.ref == 'refs/heads/master'
env:
SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }}
run: |
printf "# External trigger for docker-beets\n\n" >> $GITHUB_STEP_SUMMARY
if grep -q "^beets_master_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`beets_master_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY
elif grep -q "^beets_master" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`beets_master\`; skipping trigger." >> $GITHUB_STEP_SUMMARY
exit 0
fi
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
echo "> External trigger running off of master branch. To disable this trigger, add \`beets_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
EXT_RELEASE=$(curl -sL "https://pypi.python.org/pypi/beets/json" |jq -r '. | .info.version')
echo "Type is \`pip_version\`" >> $GITHUB_STEP_SUMMARY
if grep -q "^beets_master_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` matches current external release; skipping trigger." >> $GITHUB_STEP_SUMMARY
exit 0
fi
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="Can't retrieve external version for beets branch master"
GHA_TRIGGER_URL="https://github.com/linuxserver/docker-beets/actions/runs/${{ github.run_id }}"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
exit 1
fi
EXT_RELEASE_SANITIZED=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
echo "Sanitized external version: \`${EXT_RELEASE_SANITIZED}\`" >> $GITHUB_STEP_SUMMARY
echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY
image="linuxserver/beets"
tag="latest"
token=$(curl -sX GET \
"https://ghcr.io/token?scope=repository%3Alinuxserver%2Fbeets%3Apull" \
| jq -r '.token')
multidigest=$(curl -s \
--header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
--header "Accept: application/vnd.oci.image.index.v1+json" \
--header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/manifests/${tag}")
if jq -e '.layers // empty' <<< "${multidigest}" >/dev/null 2>&1; then
# If there's a layer element it's a single-arch manifest so just get that digest
digest=$(jq -r '.config.digest' <<< "${multidigest}")
else
# Otherwise it's multi-arch or has manifest annotations
if jq -e '.manifests[]?.annotations // empty' <<< "${multidigest}" >/dev/null 2>&1; then
# Check for manifest annotations and delete if found
multidigest=$(jq 'del(.manifests[] | select(.annotations))' <<< "${multidigest}")
fi
if [[ $(jq '.manifests | length' <<< "${multidigest}") -gt 1 ]]; then
# If there's still more than one digest, it's multi-arch
multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}")
else
# Otherwise it's single arch
multidigest=$(jq -r ".manifests[].digest?" <<< "${multidigest}")
fi
if digest=$(curl -s \
--header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
--header "Accept: application/vnd.oci.image.manifest.v1+json" \
--header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/manifests/${multidigest}"); then
digest=$(jq -r '.config.digest' <<< "${digest}");
fi
fi
image_info=$(curl -sL \
--header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/blobs/${digest}")
if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then
image_info=$(echo $image_info | jq -r '.config')
else
image_info=$(echo $image_info | jq -r '.container_config')
fi
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
if [ -z "${IMAGE_VERSION}" ]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="Can't retrieve last pushed version for beets tag latest"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
exit 1
fi
echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY
if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then
echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY
exit 0
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY
exit 0
else
if [[ "${artifacts_found}" == "false" ]]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> New version detected, but not all artifacts are published yet; skipping trigger" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="New version ${EXT_RELEASE} for beets tag latest is detected, however not all artifacts are uploaded to upstream release yet. Will try again later."
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
"description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
else
printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY
echo "New sanitized version \`${EXT_RELEASE_SANITIZED}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY
if [[ "${artifacts_found}" == "true" ]]; then
echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY
fi
response=$(curl -iX POST \
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/master/buildWithParameters?PACKAGE_CHECK=false \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
sleep 10
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
buildurl="${buildurl%$'\r'}"
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
curl -iX POST \
"${buildurl}submitDescription" \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
--data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
--data-urlencode "Submit=Submit"
echo "**** Notifying Discord ****"
TRIGGER_REASON="A version change was detected for beets tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
"description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
fi
fi

View file

@ -1,48 +0,0 @@
name: External Trigger Scheduler
on:
schedule:
- cron: '52 * * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
external-trigger-scheduler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: '0'
- name: External Trigger Scheduler
run: |
printf "# External trigger scheduler for docker-beets\n\n" >> $GITHUB_STEP_SUMMARY
printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
do
if [[ "${br}" == "HEAD" ]]; then
printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY
continue
fi
printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY
ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-beets/${br}/jenkins-vars.yml)
ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch')
ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type')
if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then
echo "Branch appears to be live and trigger is not os; checking workflow." >> $GITHUB_STEP_SUMMARY
if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-beets/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then
echo "Triggering external trigger workflow for branch." >> $GITHUB_STEP_SUMMARY
curl -iX POST \
-H "Authorization: token ${{ secrets.CR_PAT }}" \
-H "Accept: application/vnd.github.v3+json" \
-d "{\"ref\":\"refs/heads/${br}\"}" \
https://api.github.com/repos/linuxserver/docker-beets/actions/workflows/external_trigger.yml/dispatches
else
echo "Skipping branch due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY
fi
else
echo "Skipping branch due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY
fi
done

View file

@ -1,19 +0,0 @@
name: Greetings
on: [pull_request_target, issues]
permissions:
contents: read
jobs:
greeting:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
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 }}

View file

@ -1,103 +0,0 @@
name: Package Trigger Scheduler
on:
schedule:
- cron: '23 18 * * 5'
workflow_dispatch:
permissions:
contents: read
jobs:
package-trigger-scheduler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: '0'
- name: Package Trigger Scheduler
env:
SKIP_PACKAGE_TRIGGER: ${{ vars.SKIP_PACKAGE_TRIGGER }}
run: |
printf "# Package trigger scheduler for docker-beets\n\n" >> $GITHUB_STEP_SUMMARY
printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes)
do
if [[ "${br}" == "HEAD" ]]; then
printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY
continue
fi
printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY
JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-beets/${br}/jenkins-vars.yml)
if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-beets/${br}/Jenkinsfile >/dev/null 2>&1; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> No Jenkinsfile found. Branch is either deprecated or is an early dev branch." >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
elif [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then
echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY
README_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-beets/${br}/readme-vars.yml)
if [[ $(yq -r '.project_deprecation_status' <<< "${README_VARS}") == "true" ]]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Branch appears to be deprecated; skipping trigger." >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
elif [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
elif grep -q "^beets_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`beets_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/${br}/lastBuild/api/json | jq -r '.building' 2>/dev/null) == "true" ]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
else
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
echo "> Triggering package trigger for branch ${br}" >> $GITHUB_STEP_SUMMARY
printf "> To disable, add \`beets_%s\` into the Github organizational variable \`SKIP_PACKAGE_TRIGGER\`.\n\n" "${br}" >> $GITHUB_STEP_SUMMARY
triggered_branches="${triggered_branches}${br} "
response=$(curl -iX POST \
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/${br}/buildWithParameters?PACKAGE_CHECK=true \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
if [[ -z "${response}" ]]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Jenkins build could not be triggered. Skipping branch."
continue
fi
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY
sleep 10
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
buildurl="${buildurl%$'\r'}"
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY
if ! curl -ifX POST \
"${buildurl}submitDescription" \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \
--data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
--data-urlencode "Submit=Submit"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Unable to change the Jenkins job description."
fi
sleep 20
fi
else
echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY
fi
done
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
if [[ -n "${triggered_branches}" ]]; then
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-beets/activity/ \n"
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
fi
if [[ -n "${skipped_branches}" ]]; then
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
fi
echo "**** Notifying Discord ****"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
"description": "**Package Check Build(s) for beets** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
fi

View file

@ -1,12 +0,0 @@
name: Permission check
on:
pull_request_target:
paths:
- '**/run'
- '**/finish'
- '**/check'
- 'root/migrations/*'
jobs:
permission_check:
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

1
.gitignore vendored
View file

@ -41,4 +41,3 @@ $RECYCLE.BIN/
Network Trash Folder Network Trash Folder
Temporary Items Temporary Items
.apdisk .apdisk
.jenkins-external

View file

@ -1,102 +1,233 @@
# syntax=docker/dockerfile:1 ARG ALPINE_VER="3.9"
FROM lsiobase/alpine:${ALPINE_VER} as fetch-stage
FROM ghcr.io/linuxserver/baseimage-alpine:3.21 ############## fetch stage ##############
# package versions
ARG MP3GAIN_VER="1.6.2"
# install fetch packages
RUN \
apk add --no-cache \
bash \
curl \
git \
jq \
unzip
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# fetch source code
RUN \
set -ex && \
mkdir -p \
/tmp/beets-src \
/tmp/mp3gain-src && \
if [ -z ${BEETS_VERSION+x} ] ; then \
BEETS_RAW_COMMIT=$(curl -sX GET "https://api.github.com/repos/beetbox/beets/commits/master" \
| jq -r .sha) && \
BEETS_VERSION="${BEETS_RAW_COMMIT:0:7}"; \
fi && \
curl -o \
/tmp/beets.tar.gz -L \
"https://github.com/sampsyo/beets/archive/${BEETS_VERSION}.tar.gz" && \
curl -o \
/tmp/mp3gain.zip -L \
"https://sourceforge.net/projects/mp3gain/files/mp3gain/${MP3GAIN_VER}/mp3gain-${MP3GAIN_VER//./_}-src.zip" && \
tar xf \
/tmp/beets.tar.gz -C \
/tmp/beets-src --strip-components=1 && \
unzip -q /tmp/mp3gain.zip -d /tmp/mp3gain-src && \
git clone https://bitbucket.org/acoustid/chromaprint.git /tmp/chromaprint-src && \
git clone https://github.com/sbarakat/beets-copyartifacts.git /tmp/copyartifacts-src
FROM lsiobase/alpine:${ALPINE_VER} as beets_build-stage
############## beets build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/beets-src /tmp/beets-src
COPY --from=fetch-stage /tmp/copyartifacts-src /tmp/copyartifacts-src
# set workdir for beets install
WORKDIR /tmp/beets-src
# install build packages
RUN \
apk add --no-cache \
py3-setuptools \
python3-dev
# build beets package
RUN \
set -ex && \
python3 setup.py build && \
python3 setup.py install --prefix=/usr --root=/build/beets
# set workdir for copyartifacts install
WORKDIR /tmp/copyartifacts-src
# build copyartifacts package
RUN \
set -ex && \
python3 setup.py install --prefix=/usr --root=/build/beets
FROM alpine:${ALPINE_VER} as mp3gain_build-stage
############## mp3gain build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/mp3gain-src /tmp/mp3gain-src
# set workdir
WORKDIR /tmp/mp3gain-src
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
mpg123-dev
# build package
RUN \
set -ex && \
mkdir -p \
/build/mp3gain/usr/bin && \
sed -i "s#/usr/local/bin#/build/mp3gain/usr/bin#g" Makefile && \
make && \
make install
FROM lsiobase/alpine:${ALPINE_VER} as chromaprint_build-stage
############## chromaprint build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/chromaprint-src /tmp/chromaprint-src
# set workdir
WORKDIR /tmp/chromaprint-src
# install build packages
RUN \
apk add --no-cache \
cmake \
ffmpeg-dev \
fftw-dev \
g++ \
make
# build package
RUN \
set -ex && \
cmake \
-DBUILD_TOOLS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
make && \
make DESTDIR=/build/chromaprint install
FROM lsiobase/alpine:${ALPINE_VER} as pip-stage
############## pip packages install stage ##############
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
py3-pip \
python3-dev
# install pip packages
RUN \
set -ex && \
pip3 install --no-cache-dir -U \
discogs-client \
mutagen \
pyacoustid \
pyyaml \
unidecode
FROM lsiobase/alpine:${ALPINE_VER} as strip-stage
############## strip packages stage ##############
# copy artifacts build stages
COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/
COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/
COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/
COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages
# install strip packages
RUN \
apk add --no-cache \
bash \
binutils
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# strip packages
RUN \
set -ex && \
for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \
do \
find /build/all/"${dirs}" -type f | \
while read -r files ; do strip "${files}" || true \
; done \
; done
# remove unneeded files
RUN \
set -ex && \
for cleanfiles in *.la *.pyc *.pyo; \
do \
find /build/all/ -iname "${cleanfiles}" -exec rm -vf '{}' + \
; done
FROM lsiobase/alpine:${ALPINE_VER}
############## runtime stage ##############
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
ARG VERSION ARG VERSION
ARG BEETS_VERSION ARG BEETS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca" LABEL maintainer="sparklyballs"
# copy artifacts strip stage
COPY --from=strip-stage /build/all/usr/ /usr/
# install runtime packages
RUN \ RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
build-base \
cairo-dev \
cargo \
cmake \
ffmpeg-dev \
fftw-dev \
git \
gobject-introspection-dev \
jpeg-dev \
libpng-dev \
mpg123-dev \
openjpeg-dev \
python3-dev && \
echo "**** install runtime packages ****" && \
apk add --no-cache \ apk add --no-cache \
chromaprint \ curl \
expat \
ffmpeg \ ffmpeg \
fftw \ fftw \
flac \
gdbm \
gobject-introspection \
gst-plugins-good \
gstreamer \
imagemagick \
jpeg \
lame \
libffi \
libpng \
mpg123 \ mpg123 \
nano \ nano \
openjpeg \ jq \
lame \
nano \
py3-beautifulsoup4 \
py3-flask \
py3-jellyfish \
py3-munkres \
py3-musicbrainzngs \
py3-pillow \
py3-pip \
py3-pylast \
py3-requests \
py3-setuptools \
py3-six \
py-enum34 \
python3 \ python3 \
sqlite-libs && \ sqlite-libs \
echo "**** compile mp3gain ****" && \ tar \
mkdir -p \ wget
/tmp/mp3gain-src && \
curl -o \
/tmp/mp3gain-src/mp3gain.zip -sL \
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 && \
make && \
make install && \
echo "**** compile mp3val ****" && \
mkdir -p \
/tmp/mp3val-src && \
curl -o \
/tmp/mp3val-src/mp3val.tar.gz -sL \
https://downloads.sourceforge.net/mp3val/mp3val-0.1.8-src.tar.gz && \
cd /tmp/mp3val-src && \
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
make -f Makefile.linux && \
cp -p mp3val /usr/bin && \
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'); \
fi && \
python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ \
beautifulsoup4 \
beets==${BEETS_VERSION} \
beets-extrafiles \
beetcamp \
python3-discogs-client \
flask \
PyGObject \
pyacoustid \
pylast \
requests \
requests_oauthlib \
typing-extensions \
unidecode && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/tmp/* \
$HOME/.cache \
$HOME/.cargo
# environment settings # environment settings
ENV BEETSDIR="/config" \ ENV BEETSDIR="/config" \
@ -108,4 +239,4 @@ COPY root/ /
# ports and volumes # ports and volumes
EXPOSE 8337 EXPOSE 8337
VOLUME /config VOLUME /config /downloads /music

View file

@ -1,103 +1,238 @@
# syntax=docker/dockerfile:1 ARG ALPINE_VER="3.9"
FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as fetch-stage
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 ############## fetch stage ##############
# package versions
ARG MP3GAIN_VER="1.6.2"
# install fetch packages
RUN \
apk add --no-cache \
bash \
curl \
git \
jq \
unzip
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# fetch source code
RUN \
set -ex && \
mkdir -p \
/tmp/beets-src \
/tmp/mp3gain-src && \
if [ -z ${BEETS_VERSION+x} ] ; then \
BEETS_RAW_COMMIT=$(curl -sX GET "https://api.github.com/repos/beetbox/beets/commits/master" \
| jq -r .sha) && \
BEETS_VERSION="${BEETS_RAW_COMMIT:0:7}"; \
fi && \
curl -o \
/tmp/beets.tar.gz -L \
"https://github.com/sampsyo/beets/archive/${BEETS_VERSION}.tar.gz" && \
curl -o \
/tmp/mp3gain.zip -L \
"https://sourceforge.net/projects/mp3gain/files/mp3gain/${MP3GAIN_VER}/mp3gain-${MP3GAIN_VER//./_}-src.zip" && \
tar xf \
/tmp/beets.tar.gz -C \
/tmp/beets-src --strip-components=1 && \
unzip -q /tmp/mp3gain.zip -d /tmp/mp3gain-src && \
git clone https://bitbucket.org/acoustid/chromaprint.git /tmp/chromaprint-src && \
git clone https://github.com/sbarakat/beets-copyartifacts.git /tmp/copyartifacts-src
FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as beets_build-stage
############## beets build stage ##############
# set workdir for beets install
WORKDIR /tmp/beets-src
# install build packages
RUN \
apk add --no-cache \
py3-setuptools \
python3-dev
# copy artifacts from fetch stage and apply bandaid
COPY --from=fetch-stage /tmp/beets-src /tmp/beets-src
COPY --from=fetch-stage /tmp/copyartifacts-src /tmp/copyartifacts-src
COPY bandaid/aarch64/ /usr/lib/
# build beets package
RUN \
set -ex && \
python3 setup.py build && \
python3 setup.py install --prefix=/usr --root=/build/beets
# set workdir for copyartifacts install
WORKDIR /tmp/copyartifacts-src
# build copyartifacts package
RUN \
set -ex && \
python3 setup.py install --prefix=/usr --root=/build/beets
FROM alpine:${ALPINE_VER} as mp3gain_build-stage
############## mp3gain build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/mp3gain-src /tmp/mp3gain-src
# set workdir
WORKDIR /tmp/mp3gain-src
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
mpg123-dev
# build package
RUN \
set -ex && \
mkdir -p \
/build/mp3gain/usr/bin && \
sed -i "s#/usr/local/bin#/build/mp3gain/usr/bin#g" Makefile && \
make && \
make install
FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as chromaprint_build-stage
############## chromaprint build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/chromaprint-src /tmp/chromaprint-src
# set workdir
WORKDIR /tmp/chromaprint-src
# install build packages
RUN \
apk add --no-cache \
cmake \
ffmpeg-dev \
fftw-dev \
g++ \
make
# build package
RUN \
set -ex && \
cmake \
-DBUILD_TOOLS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
make && \
make DESTDIR=/build/chromaprint install
FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as pip-stage
############## pip packages install stage ##############
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
py3-pip \
python3-dev
# apply bandaid
COPY bandaid/aarch64/ /usr/lib/
# install pip packages
RUN \
set -ex && \
pip3 install --no-cache-dir -U \
discogs-client \
mutagen \
pyacoustid \
pyyaml \
unidecode
FROM lsiobase/alpine:arm64v8-${ALPINE_VER} as strip-stage
############## strip packages stage ##############
# copy artifacts build stages
COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/
COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/
COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/
COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages
# install strip packages
RUN \
apk add --no-cache \
bash \
binutils
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# strip packages
RUN \
set -ex && \
for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \
do \
find /build/all/"${dirs}" -type f | \
while read -r files ; do strip "${files}" || true \
; done \
; done
# remove unneeded files
RUN \
set -ex && \
for cleanfiles in *.la *.pyc *.pyo; \
do \
find /build/all/ -iname "${cleanfiles}" -exec rm -vf '{}' + \
; done
FROM lsiobase/alpine:arm64v8-${ALPINE_VER}
############## runtime stage ##############
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
ARG VERSION ARG VERSION
ARG BEETS_VERSION ARG BEETS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="aptalca" LABEL maintainer="sparklyballs"
# copy artifacts strip stage and apply bandaid
COPY --from=strip-stage /build/all/usr/ /usr/
COPY bandaid/aarch64/ /usr/lib/
# install runtime packages
RUN \ RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
build-base \
cairo-dev \
cargo \
cmake \
ffmpeg-dev \
fftw-dev \
git \
gobject-introspection-dev \
jpeg-dev \
libpng-dev \
mpg123-dev \
openjpeg-dev \
python3-dev && \
echo "**** install runtime packages ****" && \
apk add --no-cache \ apk add --no-cache \
chromaprint \ curl \
expat \
ffmpeg \ ffmpeg \
ffmpeg-libs \
fftw \ fftw \
flac \
gdbm \
gobject-introspection \
gst-plugins-good \
gstreamer \
imagemagick \
jpeg \
lame \
libffi \
libpng \
mpg123 \ mpg123 \
nano \ nano \
openjpeg \ jq \
lame \
nano \
py3-beautifulsoup4 \
py3-flask \
py3-jellyfish \
py3-munkres \
py3-musicbrainzngs \
py3-pillow \
py3-pip \
py3-pylast \
py3-requests \
py3-setuptools \
py3-six \
py-enum34 \
python3 \ python3 \
sqlite-libs && \ sqlite-libs \
echo "**** compile mp3gain ****" && \ tar \
mkdir -p \ wget
/tmp/mp3gain-src && \
curl -o \
/tmp/mp3gain-src/mp3gain.zip -sL \
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 && \
make && \
make install && \
echo "**** compile mp3val ****" && \
mkdir -p \
/tmp/mp3val-src && \
curl -o \
/tmp/mp3val-src/mp3val.tar.gz -sL \
https://downloads.sourceforge.net/mp3val/mp3val-0.1.8-src.tar.gz && \
cd /tmp/mp3val-src && \
tar xzf /tmp/mp3val-src/mp3val.tar.gz --strip 1 && \
make -f Makefile.linux && \
cp -p mp3val /usr/bin && \
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'); \
fi && \
python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.21/ \
beautifulsoup4 \
beets==${BEETS_VERSION} \
beets-extrafiles \
beetcamp \
python3-discogs-client \
flask \
PyGObject \
pyacoustid \
pylast \
requests \
requests_oauthlib \
typing-extensions \
unidecode && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/tmp/* \
$HOME/.cache \
$HOME/.cargo
# environment settings # environment settings
ENV BEETSDIR="/config" \ ENV BEETSDIR="/config" \
@ -109,4 +244,4 @@ COPY root/ /
# ports and volumes # ports and volumes
EXPOSE 8337 EXPOSE 8337
VOLUME /config VOLUME /config /downloads /music

242
Dockerfile.armhf Normal file
View file

@ -0,0 +1,242 @@
ARG ALPINE_VER="3.9"
FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as fetch-stage
############## fetch stage ##############
# package versions
ARG MP3GAIN_VER="1.6.2"
# install fetch packages
RUN \
apk add --no-cache \
bash \
curl \
git \
jq \
unzip
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# fetch source code
RUN \
set -ex && \
mkdir -p \
/tmp/beets-src \
/tmp/mp3gain-src && \
if [ -z ${BEETS_VERSION+x} ] ; then \
BEETS_RAW_COMMIT=$(curl -sX GET "https://api.github.com/repos/beetbox/beets/commits/master" \
| jq -r .sha) && \
BEETS_VERSION="${BEETS_RAW_COMMIT:0:7}"; \
fi && \
curl -o \
/tmp/beets.tar.gz -L \
"https://github.com/sampsyo/beets/archive/${BEETS_VERSION}.tar.gz" && \
curl -o \
/tmp/mp3gain.zip -L \
"https://sourceforge.net/projects/mp3gain/files/mp3gain/${MP3GAIN_VER}/mp3gain-${MP3GAIN_VER//./_}-src.zip" && \
tar xf \
/tmp/beets.tar.gz -C \
/tmp/beets-src --strip-components=1 && \
unzip -q /tmp/mp3gain.zip -d /tmp/mp3gain-src && \
git clone https://bitbucket.org/acoustid/chromaprint.git /tmp/chromaprint-src && \
git clone https://github.com/sbarakat/beets-copyartifacts.git /tmp/copyartifacts-src
FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as beets_build-stage
############## beets build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/beets-src /tmp/beets-src
COPY --from=fetch-stage /tmp/copyartifacts-src /tmp/copyartifacts-src
# set workdir for beets install
WORKDIR /tmp/beets-src
# install build packages
RUN \
apk add --no-cache \
py3-setuptools \
python3-dev
# build beets package
RUN \
set -ex && \
python3 setup.py build && \
python3 setup.py install --prefix=/usr --root=/build/beets
# set workdir for copyartifacts install
WORKDIR /tmp/copyartifacts-src
# build copyartifacts package
RUN \
set -ex && \
python3 setup.py install --prefix=/usr --root=/build/beets
FROM alpine:${ALPINE_VER} as mp3gain_build-stage
############## mp3gain build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/mp3gain-src /tmp/mp3gain-src
# set workdir
WORKDIR /tmp/mp3gain-src
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
mpg123-dev
# build package
RUN \
set -ex && \
mkdir -p \
/build/mp3gain/usr/bin && \
sed -i "s#/usr/local/bin#/build/mp3gain/usr/bin#g" Makefile && \
make && \
make install
FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as chromaprint_build-stage
############## chromaprint build stage ##############
# copy artifacts from fetch stage
COPY --from=fetch-stage /tmp/chromaprint-src /tmp/chromaprint-src
# set workdir
WORKDIR /tmp/chromaprint-src
# install build packages
RUN \
apk add --no-cache \
cmake \
ffmpeg-dev \
fftw-dev \
g++ \
make
# build package
RUN \
set -ex && \
cmake \
-DBUILD_TOOLS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
make && \
make DESTDIR=/build/chromaprint install
FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as pip-stage
############## pip packages install stage ##############
# install build packages
RUN \
apk add --no-cache \
g++ \
make \
py3-pip \
python3-dev
# install pip packages
RUN \
set -ex && \
pip3 install --no-cache-dir -U \
discogs-client \
mutagen \
pyacoustid \
pyyaml \
unidecode
FROM lsiobase/alpine:arm32v7-${ALPINE_VER} as strip-stage
############## strip packages stage ##############
# copy artifacts build stages
COPY --from=beets_build-stage /build/beets/usr/ /build/all//usr/
COPY --from=chromaprint_build-stage /build/chromaprint/usr/ /build/all//usr/
COPY --from=mp3gain_build-stage /build/mp3gain/usr/ /build/all//usr/
COPY --from=pip-stage /usr/lib/python3.6/site-packages /build/all/usr/lib/python3.6/site-packages
# install strip packages
RUN \
apk add --no-cache \
bash \
binutils
# set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# strip packages
RUN \
set -ex && \
for dirs in usr/bin usr/lib usr/lib/python3.6/site-packages; \
do \
find /build/all/"${dirs}" -type f | \
while read -r files ; do strip "${files}" || true \
; done \
; done
# remove unneeded files
RUN \
set -ex && \
for cleanfiles in *.la *.pyc *.pyo; \
do \
find /build/all/ -iname "${cleanfiles}" -exec rm -vf '{}' + \
; done
FROM lsiobase/alpine:arm32v7-${ALPINE_VER}
############## runtime stage ##############
# set version label
ARG BUILD_DATE
ARG VERSION
ARG BEETS_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# copy artifacts strip stage
COPY --from=strip-stage /build/all/usr/ /usr/
# install runtime packages
RUN \
apk add --no-cache \
curl \
ffmpeg \
fftw \
mpg123 \
nano \
jq \
lame \
nano \
py3-beautifulsoup4 \
py3-flask \
py3-jellyfish \
py3-munkres \
py3-musicbrainzngs \
py3-pillow \
py3-pip \
py3-pylast \
py3-requests \
py3-setuptools \
py3-six \
py-enum34 \
python3 \
sqlite-libs \
tar \
wget
# environment settings
ENV BEETSDIR="/config" \
EDITOR="nano" \
HOME="/config"
# copy local files
COPY root/ /
# ports and volumes
EXPOSE 8337
VOLUME /config /downloads /music

1059
Jenkinsfile vendored

File diff suppressed because it is too large Load diff

0
LICENSE Normal file → Executable file
View file

323
README.md
View file

@ -1,41 +1,26 @@
<!-- DO NOT EDIT THIS FILE MANUALLY -->
<!-- Please read https://github.com/linuxserver/docker-beets/blob/master/.github/CONTRIBUTING.md -->
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io)
[![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://linuxserver.io/discord "realtime support / chat with the community and the team.")
[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.")
[![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.")
[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget")
The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: * regular and timely application updates
* easy user mappings (PGID, PUID)
* regular and timely application updates * custom base image with s6 overlay
* easy user mappings (PGID, PUID) * weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
* custom base image with s6 overlay * regular security updates
* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
* regular security updates
Find us at: Find us at:
* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
* [IRC](https://irc.linuxserver.io) - on freenode at `#linuxserver.io`. Our primary support channel is Discord.
* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
* [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team.
* [Discourse](https://discourse.linuxserver.io) - post on our community forum.
* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
# [linuxserver/beets](https://github.com/linuxserver/docker-beets) # [linuxserver/beets](https://github.com/linuxserver/docker-beets)
[![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fbeets?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh) [![](https://images.microbadger.com/badges/version/linuxserver/beets.svg)](https://microbadger.com/images/linuxserver/beets "Get your own version badge on microbadger.com")
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-beets.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-beets) [![](https://images.microbadger.com/badges/image/linuxserver/beets.svg)](https://microbadger.com/images/linuxserver/beets "Get your own version badge on microbadger.com")
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-beets.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-beets/releases) ![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/beets.svg)
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-beets/packages) ![Docker Stars](https://img.shields.io/docker/stars/linuxserver/beets.svg)
[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-beets/container_registry) [![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-beets/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/master/)
[![Quay.io](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/beets) [![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/beets/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/beets/latest/index.html)
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/beets.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/beets)
[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/beets.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/beets)
[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-beets%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-beets/job/master/)
[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Fbeets%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/beets/latest/index.html)
[Beets](http://beets.io/) 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](http://beets.io/) 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.
@ -43,283 +28,157 @@ Find us at:
## Supported Architectures ## Supported Architectures
We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://distribution.github.io/distribution/spec/manifest-v2-2/#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
Simply pulling `lscr.io/linuxserver/beets:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. Simply pulling `linuxserver/beets` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
The architectures supported by this image are: The architectures supported by this image are:
| Architecture | Available | Tag | | Architecture | Tag |
| :----: | :----: | ---- | | :----: | --- |
| x86-64 | ✅ | amd64-\<version tag\> | | x86-64 | amd64-latest |
| arm64 | ✅ | arm64v8-\<version tag\> | | arm64 | arm64v8-latest |
| armhf | arm32v7-latest |
## Version Tags
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
| Tag | Available | Description |
| :----: | :----: |--- |
| 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
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](http://beets.io/) for more info.
Contains [beets-extrafiles](https://github.com/Holzhaus/beets-extrafiles) plugin, [configuration details](https://github.com/Holzhaus/beets-extrafiles#usage)
## Read-Only Operation
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
## Non-Root Operation
This image can be run with a non-root user. For details please [read the docs](https://docs.linuxserver.io/misc/non-root/).
## Usage ## Usage
To help you get started creating a container from this image you can either use docker-compose or the docker cli. Here are some example snippets to help you get started creating a container.
>[!NOTE] ### docker
>Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided.
### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) ```
docker create \
--name=beets \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 8337:8337 \
-v </path/to/appdata/config>:/config \
-v </path/to/music/library>:/music \
-v </path/to/ingest>:/downloads \
--restart unless-stopped \
linuxserver/beets
```
```yaml
### docker-compose
Compatible with docker-compose v2 schemas.
```
--- ---
version: "2"
services: services:
beets: beets:
image: lscr.io/linuxserver/beets:latest image: linuxserver/beets
container_name: beets container_name: beets
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=Etc/UTC - TZ=Europe/London
volumes: volumes:
- /path/to/beets/config:/config - </path/to/appdata/config>:/config
- /path/to/music/library:/music - </path/to/music/library>:/music
- /path/to/ingest:/downloads - </path/to/ingest>:/downloads
ports: ports:
- 8337:8337 - 8337:8337
restart: unless-stopped restart: unless-stopped
``` ```
### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
```bash
docker run -d \
--name=beets \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8337:8337 \
-v /path/to/beets/config:/config \
-v /path/to/music/library:/music \
-v /path/to/ingest:/downloads \
--restart unless-stopped \
lscr.io/linuxserver/beets:latest
```
## Parameters ## Parameters
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
| Parameter | Function | | Parameter | Function |
| :----: | --- | | :----: | --- |
| `-p 8337:8337` | Application WebUI | | `-p 8337` | Application WebUI |
| `-e PUID=1000` | for UserID - see below for explanation | | `-e PUID=1000` | for UserID - see below for explanation |
| `-e PGID=1000` | for GroupID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
| `-v /config` | Persistent config files | | `-v /config` | Configuration files. |
| `-v /music` | Music library | | `-v /music` | Music library |
| `-v /downloads` | Non processed music | | `-v /downloads` | Non processed music |
| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
| `--user=1000:1000` | Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). |
## Environment variables from files (Docker secrets)
You can set any environment variable from a file by using a special prepend `FILE__`.
As an example:
```bash
-e FILE__MYVAR=/run/secrets/mysecretvariable
```
Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file.
## Umask for running applications
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting.
Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support.
## User / Group Identifiers ## User / Group Identifiers
When using volumes (`-v` flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id your_user` as below: In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
```bash ```
id your_user $ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
``` ```
Example output:
```text &nbsp;
uid=1000(your_user) gid=1000(your_user) groups=1000(your_user)
```
## Docker Mods
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=beets&query=%24.mods%5B%27beets%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=beets "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.")
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
## Support Info ## Support Info
* Shell access whilst the container is running: * Shell access whilst the container is running: `docker exec -it beets /bin/bash`
* To monitor the logs of the container in realtime: `docker logs -f beets`
```bash * container version number
docker exec -it beets /bin/bash * `docker inspect -f '{{ index .Config.Labels "build_version" }}' beets`
``` * image version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/beets`
* To monitor the logs of the container in realtime:
```bash
docker logs -f beets
```
* Container version number:
```bash
docker inspect -f '{{ index .Config.Labels "build_version" }}' beets
```
* Image version number:
```bash
docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/beets:latest
```
## Updating Info ## Updating Info
Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (noted in the relevant readme.md), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image.
Below are the instructions for updating containers: Below are the instructions for updating containers:
### Via Docker Run/Create
* Update the image: `docker pull linuxserver/beets`
* Stop the running container: `docker stop beets`
* Delete the container: `docker rm beets`
* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
* Start the new container: `docker start beets`
* You can also remove the old dangling images: `docker image prune`
### Via Docker Compose ### Via Docker Compose
* Update all images: `docker-compose pull`
* or update a single image: `docker-compose pull beets`
* Let compose update all containers as necessary: `docker-compose up -d`
* or update a single container: `docker-compose up -d beets`
* You can also remove the old dangling images: `docker image prune`
* Update images: ### Via Watchtower auto-updater (especially useful if you don't remember the original parameters)
* All images: * Pull the latest image at its tag and replace it with the same env variables in one run:
```bash
docker-compose pull
``` ```
docker run --rm \
* Single image: -v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower \
```bash --run-once beets
docker-compose pull beets
``` ```
* You can also remove the old dangling images: `docker image prune`
* Update containers:
* All containers:
```bash
docker-compose up -d
```
* Single container:
```bash
docker-compose up -d beets
```
* You can also remove the old dangling images:
```bash
docker image prune
```
### Via Docker Run
* Update the image:
```bash
docker pull lscr.io/linuxserver/beets:latest
```
* Stop the running container:
```bash
docker stop beets
```
* Delete the container:
```bash
docker rm beets
```
* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
* You can also remove the old dangling images:
```bash
docker image prune
```
### Image Update Notifications - Diun (Docker Image Update Notifier)
>[!TIP]
>We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
## Building locally ## Building locally
If you want to make local modifications to these images for development purposes or just to customize the logic: If you want to make local modifications to these images for development purposes or just to customize the logic:
```
```bash
git clone https://github.com/linuxserver/docker-beets.git git clone https://github.com/linuxserver/docker-beets.git
cd docker-beets cd docker-beets
docker build \ docker build \
--no-cache \ --no-cache \
--pull \ --pull \
-t lscr.io/linuxserver/beets:latest . -t linuxserver/beets:latest .
``` ```
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
```
```bash docker run --rm --privileged multiarch/qemu-user-static:register --reset
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
``` ```
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
## Versions ## Versions
* **27.01.25:** - Rebase to Alpine 3.21.
* **01.10.24:** - Add packages required for Discogs plugin.
* **28.08.24:** - Rebase to Alpine 3.20, switch from Pillow to Imagemagick.
* **23.12.23:** - Rebase to Alpine 3.19.
* **25.08.23:** - Rebase to Alpine 3.18, pin Pillow to 9.5.0.
* **07.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
* **25.03.23:** - Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html).
* **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.
* **12.05.19:** - Add flac and mp3val binaries required for badfiles plugin.
* **12.04.19:** - Rebase to Alpine 3.9.
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
* **11.03.19:** - Swap copyartifacts for extrafiles, update endpoints with nightly tag.
* **01.03.19:** - Switch to python3. * **01.03.19:** - Switch to python3.
* **07.02.19:** - Add fftw-dev build dependency for chromaprint. * **07.02.19:** - Add fftw-dev build dependency for chromaprint.
* **28.01.19:** - Add pipeline logic and multi arch. * **28.01.19:** - Add pipeline logic and multi arch.

Binary file not shown.

View file

@ -2,13 +2,15 @@
# jenkins variables # jenkins variables
project_name: docker-beets project_name: docker-beets
external_type: pip_version external_type: github_commit
release_type: stable release_type: prerelease
release_tag: latest release_tag: nightly
ls_branch: master ls_branch: nightly
repo_vars: repo_vars:
- BUILD_VERSION_ARG = 'BEETS_VERSION' - BUILD_VERSION_ARG = 'BEETS_VERSION'
- EXT_PIP='beets' - EXT_GIT_BRANCH = 'master'
- EXT_USER = 'beetbox'
- EXT_REPO = 'beets'
- LS_USER = 'linuxserver' - LS_USER = 'linuxserver'
- LS_REPO = 'docker-beets' - LS_REPO = 'docker-beets'
- CONTAINER_NAME = 'beets' - CONTAINER_NAME = 'beets'
@ -22,6 +24,6 @@ repo_vars:
- CI_PORT='8337' - CI_PORT='8337'
- CI_SSL='false' - CI_SSL='false'
- CI_DELAY='120' - CI_DELAY='120'
- CI_DOCKERENV='' - CI_DOCKERENV='TZ=US/Pacific'
- CI_AUTH='' - CI_AUTH='user:password'
- CI_WEBPATH='' - CI_WEBPATH=''

View file

@ -1,294 +1,114 @@
NAME VERSION TYPE alpine-baselayout-3.1.0-r3
Simple Launcher 1.1.0.14 binary (+5 duplicates) alpine-keys-2.1-r1
acl-libs 2.3.2-r1 apk alsa-lib-1.1.8-r0
alpine-baselayout 3.6.8-r1 apk apk-tools-2.10.3-r1
alpine-baselayout-data 3.6.8-r1 apk bash-4.4.19-r1
alpine-keys 2.5-r0 apk busybox-1.29.3-r10
alpine-release 3.21.5-r0 apk ca-certificates-20190108-r0
alsa-lib 1.2.12-r0 apk ca-certificates-cacert-20190108-r0
anyio 4.12.1 python coreutils-8.30-r0
aom-libs 3.11.0-r0 apk curl-7.64.0-r1
apk-tools 2.14.6-r3 apk expat-2.2.6-r0
audioread 3.1.0 python ffmpeg-4.0.2-r0
bash 5.2.37-r0 apk ffmpeg-libs-4.0.2-r0
beautifulsoup4 4.14.3 python fftw-3.3.8-r0
beetcamp 0.23.0 python fftw-double-libs-3.3.8-r0
beets 2.5.1 python fftw-long-double-libs-3.3.8-r0
beets-extrafiles 0.0.7 python fftw-single-libs-3.3.8-r0
blinker 1.9.0 python fontconfig-2.13.1-r0
brotli-libs 1.1.0-r2 apk freetype-2.9.1-r2
busybox 1.37.0-r14 apk fribidi-1.0.5-r0
busybox-binsh 1.37.0-r14 apk gdbm-1.13-r1
c-ares 1.34.6-r0 apk gmp-6.1.2-r1
ca-certificates 20250911-r0 apk gnutls-3.6.7-r0
ca-certificates-bundle 20250911-r0 apk jq-1.6-r0
cairo 1.18.4-r0 apk lame-3.100-r0
cairo-gobject 1.18.4-r0 apk lcms2-2.9-r1
catatonit 0.2.0-r0 apk libacl-2.2.52-r5
cdparanoia-libs 10.2-r14 apk libass-0.14.0-r0
certifi 2026.1.4 python libattr-2.4.47-r7
charset-normalizer 3.4.4 python libbsd-0.8.6-r2
chromaprint 1.5.1-r7 apk libbz2-1.0.6-r6
chromaprint-libs 1.5.1-r7 apk libc-utils-0.7.1-r0
cjson 1.7.19-r0 apk libcrypto1.1-1.1.1b-r1
click 8.3.1 python libcurl-7.64.0-r1
confuse 2.1.0 python libdrm-2.4.96-r0
coreutils 9.5-r2 apk libffi-3.2.1-r6
coreutils-env 9.5-r2 apk libgcc-8.3.0-r0
coreutils-fmt 9.5-r2 apk libjpeg-turbo-1.5.3-r4
coreutils-sha512sum 9.5-r2 apk libmagic-5.36-r0
curl 8.14.1-r2 apk libogg-1.3.3-r2
dbus-libs 1.14.10-r4 apk libpciaccess-0.14-r0
duktape 2.7.0-r1 apk libpng-1.6.37-r0
eudev-libs 3.2.14-r5 apk libssh2-1.8.2-r0
expat 2.7.3-r0 apk libssl1.1-1.1.1b-r1
ffmpeg 6.1.2-r1 apk libstdc++-8.3.0-r0
ffmpeg-libavcodec 6.1.2-r1 apk libtasn1-4.13-r0
ffmpeg-libavdevice 6.1.2-r1 apk libtheora-1.1.1-r13
ffmpeg-libavfilter 6.1.2-r1 apk libtls-standalone-2.7.4-r6
ffmpeg-libavformat 6.1.2-r1 apk libunistring-0.9.10-r0
ffmpeg-libavutil 6.1.2-r1 apk libuuid-2.33-r0
ffmpeg-libpostproc 6.1.2-r1 apk libva-2.2.0-r0
ffmpeg-libswresample 6.1.2-r1 apk libvdpau-1.1.1-r2
ffmpeg-libswscale 6.1.2-r1 apk libvorbis-1.3.6-r2
fftw 3.3.10-r6 apk libvpx-1.6.1-r1
fftw-double-libs 3.3.10-r6 apk libwebp-1.0.1-r0
fftw-long-double-libs 3.3.10-r6 apk libx11-1.6.7-r0
fftw-single-libs 3.3.10-r6 apk libxau-1.0.8-r3
filetype 1.2.0 python libxcb-1.13-r2
findutils 4.10.0-r0 apk libxdmcp-1.1.2-r5
flac 1.4.3-r1 apk libxext-1.3.3-r3
flask 3.1.2 python libxfixes-5.0.3-r2
fontconfig 2.15.0-r1 apk linux-pam-1.3.0-r0
freetype 2.13.3-r0 apk mpg123-1.25.10-r0
fribidi 1.0.16-r0 apk musl-1.1.20-r4
gdbm 1.24-r0 apk musl-utils-1.1.20-r4
gdk-pixbuf 2.42.12-r1 apk nano-3.2-r0
giflib 5.2.2-r1 apk ncurses-libs-6.1_p20190105-r0
glib 2.82.5-r0 apk ncurses-terminfo-6.1_p20190105-r0
glib-networking 2.80.1-r0 apk ncurses-terminfo-base-6.1_p20190105-r0
glslang-libs 1.3.296.0-r0 apk nettle-3.4.1-r0
gmp 6.3.0-r2 apk nghttp2-libs-1.35.1-r0
gnutls 3.8.8-r0 apk oniguruma-6.9.1-r0
gobject-introspection 1.82.0-r2 apk openjpeg-2.3.0-r3
graphene 1.10.8-r5 apk opus-1.3-r0
graphite2 1.3.14-r6 apk p11-kit-0.23.14-r0
gsettings-desktop-schemas 47.1-r0 apk py-enum34-1.1.6-r2
gst-plugins-base 1.24.11-r0 apk py3-beautifulsoup4-4.6.1-r0
gst-plugins-good 1.24.11-r0 apk py3-certifi-2018.4.16-r0
gstreamer 1.24.11-r0 apk py3-chardet-3.0.4-r0
gstreamer-ptp-helper 1.24.11-r0 apk py3-click-6.7-r2
h11 0.16.0 python py3-flask-1.0.2-r1
harfbuzz 9.0.0-r1 apk py3-idna-2.7-r0
httpcore 1.0.9 python py3-itsdangerous-0.24-r3
httpx 0.28.1 python py3-jellyfish-0.6.1-r0
hwdata-pci 0.393-r0 apk py3-jinja2-2.10-r2
idna 3.11 python py3-markupsafe-1.1.0-r0
imagemagick 7.1.1.41-r0 apk py3-munkres-1.0.12-r0
imagemagick-jpeg 7.1.1.41-r0 apk py3-musicbrainzngs-0.6-r2
imagemagick-jxl 7.1.1.41-r0 apk py3-olefile-0.43-r2
imagemagick-libs 7.1.1.41-r0 apk py3-pillow-5.4.1-r0
imagemagick-pango 7.1.1.41-r0 apk py3-pylast-2.4.0-r0
imagemagick-tiff 7.1.1.41-r0 apk py3-requests-2.19.1-r0
imagemagick-webp 7.1.1.41-r0 apk py3-setuptools-40.6.3-r0
imath 3.1.12-r0 apk py3-six-1.11.0-r0
itsdangerous 2.2.0 python py3-urllib3-1.22-r0
jellyfish 1.2.1 python py3-werkzeug-0.14.1-r0
jinja2 3.1.6 python python3-3.6.8-r2
jpeg 9f-r0 apk readline-7.0.003-r1
jq 1.7.1-r0 apk scanelf-1.2.3-r0
lame 3.100-r5 apk sdl2-2.0.9-r0
lame-libs 3.100-r5 apk shadow-4.5-r1
langdetect 1.0.9 python sqlite-libs-3.26.0-r3
lap 0.5.12 python ssl_client-1.29.3-r10
lcms2 2.16-r0 apk tar-1.32-r0
libSvtAv1Enc 2.2.1-r0 apk tiff-4.0.10-r0
libass 0.17.3-r0 apk tzdata-2019a-r0
libasyncns 0.8-r4 apk v4l-utils-libs-1.16.2-r0
libattr 2.5.2-r2 apk wget-1.20.3-r0
libavc1394 0.5.4-r3 apk x264-libs-20180304-r1
libblkid 2.40.4-r1 apk x265-libs-2.8-r1
libbluray 1.3.4-r1 apk xvidcore-1.3.4-r1
libbsd 0.12.2-r0 apk xz-5.2.4-r0
libbz2 1.0.8-r6 apk xz-libs-5.2.4-r0
libcap2 2.71-r0 apk zlib-1.2.11-r1
libcrypto3 3.3.5-r0 apk
libcurl 8.14.1-r2 apk
libdav1d 1.5.0-r0 apk
libdeflate 1.22-r0 apk
libdovi 3.3.1-r0 apk
libdrm 2.4.123-r1 apk
libdv 1.0.0-r8 apk
libeconf 0.6.3-r0 apk
libelf 0.191-r0 apk
libexpat 2.7.3-r0 apk
libffi 3.4.7-r0 apk
libflac 1.4.3-r1 apk
libgcc 14.2.0-r4 apk
libgomp 14.2.0-r4 apk
libgudev 238-r0 apk
libhwy 1.0.7-r0 apk
libidn2 2.3.7-r0 apk
libiec61883 1.2.0-r4 apk
libintl 0.22.5-r0 apk
libjpeg-turbo 3.0.4-r0 apk
libjpeg-turbo-utils 3.0.4-r0 apk
libjxl 0.10.4-r0 apk
libltdl 2.4.7-r3 apk
libmd 1.1.0-r0 apk
libmount 2.40.4-r1 apk
libncursesw 6.5_p20241006-r3 apk
libogg 1.3.5-r5 apk
libopenmpt 0.7.12-r0 apk
libpanelw 6.5_p20241006-r3 apk
libpciaccess 0.18.1-r0 apk
libplacebo 6.338.2-r3 apk
libpng 1.6.54-r0 apk
libproc2 4.0.4-r2 apk
libproxy 0.5.9-r0 apk
libpsl 0.21.5-r3 apk
libpulse 17.0-r4 apk
libraw1394 2.1.2-r5 apk
librist 0.2.10-r1 apk
libsharpyuv 1.4.0-r0 apk
libshout 2.4.6-r3 apk
libsndfile 1.2.2-r2 apk
libsodium 1.0.20-r1 apk
libsoup3 3.6.5-r0 apk
libsrt 1.5.3-r0 apk
libssh 0.11.1-r0 apk
libssl3 3.3.5-r0 apk
libstdc++ 14.2.0-r4 apk
libtag 1.13.1-r0 apk
libtasn1 4.21.0-r0 apk
libtheora 1.1.1-r18 apk
libturbojpeg 3.0.4-r0 apk
libunibreak 6.1-r0 apk
libunistring 1.2-r0 apk
libva 2.22.0-r1 apk
libvdpau 1.5-r4 apk
libvorbis 1.3.7-r2 apk
libvpx 1.15.0-r0 apk
libwebp 1.4.0-r0 apk
libwebpdemux 1.4.0-r0 apk
libwebpmux 1.4.0-r0 apk
libx11 1.8.10-r0 apk
libxau 1.0.11-r4 apk
libxcb 1.16.1-r0 apk
libxdamage 1.1.6-r5 apk
libxdmcp 1.1.5-r1 apk
libxext 1.3.6-r2 apk
libxfixes 6.0.1-r4 apk
libxft 2.3.8-r3 apk
libxi 1.8.2-r0 apk
libxml2 2.13.9-r0 apk
libxrender 0.9.11-r5 apk
libxshmfence 1.3.2-r6 apk
libxtst 1.2.5-r0 apk
libxv 1.0.12-r5 apk
libxxf86vm 1.1.5-r6 apk
libzmq 4.3.5-r2 apk
lilv-libs 0.24.24-r1 apk
linux-pam 1.6.1-r1 apk
llvm19-libs 19.1.4-r1 apk
markupsafe 3.0.3 python
mbedtls 3.6.5-r0 apk
mediafile 0.14.0 python
mesa 24.2.8-r0 apk
mesa-egl 24.2.8-r0 apk
mesa-gbm 24.2.8-r0 apk
mesa-gl 24.2.8-r0 apk
mesa-glapi 24.2.8-r0 apk
mpdecimal 4.0.0-r0 apk
mpg123 1.32.9-r0 apk
mpg123-libs 1.32.9-r0 apk
musicbrainzngs 0.7.1 python
musl 1.2.5-r9 apk
musl-utils 1.2.5-r9 apk
mutagen 1.47.0 python
nano 8.2-r0 apk
ncurses-terminfo-base 6.5_p20241006-r3 apk
netcat-openbsd 1.226.1.1-r0 apk
nettle 3.10-r1 apk
nghttp2-libs 1.64.0-r0 apk
numactl 2.0.18-r0 apk
numpy 2.4.1 python
oauthlib 3.3.1 python
onevpl-libs 2023.3.1-r2 apk
oniguruma 6.9.9-r0 apk
opencore-amr 0.1.6-r1 apk
openexr-libiex 3.3.2-r0 apk
openexr-libilmthread 3.3.2-r0 apk
openexr-libopenexr 3.3.2-r0 apk
openexr-libopenexrcore 3.3.2-r0 apk
openjpeg 2.5.2-r0 apk
opus 1.5.2-r1 apk
orc 0.4.40-r1 apk
p11-kit 0.25.5-r2 apk
packaging 26.0 python
pango 1.54.0-r1 apk
pcre2 10.43-r0 apk
pillow 12.1.0 python
pip 25.3 python
pixman 0.43.4-r1 apk
pkgconf 2.3.0-r0 apk
platformdirs 4.5.1 python
procps-ng 4.0.4-r2 apk
pyacoustid 1.3.0 python
pyc 3.12.12-r0 apk
pycairo 1.29.0 python
pycountry 24.6.1 python
pygobject 3.54.5 python
pylast 7.0.2 python
python-dateutil 2.9.0.post0 python
python3 3.12.12-r0 apk
python3-discogs-client 2.8 python
python3-pyc 3.12.12-r0 apk
python3-pycache-pyc0 3.12.12-r0 apk
pyyaml 6.0.3 python
rav1e-libs 0.7.1-r0 apk
readline 8.2.13-r0 apk
requests 2.32.5 python
requests-oauthlib 2.0.0 python
scanelf 1.3.8-r1 apk
sdl2 2.30.9-r0 apk
serd-libs 0.32.2-r0 apk
shaderc 2024.0-r2 apk
shadow 4.16.0-r1 apk
shared-mime-info 2.4-r2 apk
six 1.17.0 python
skalibs-libs 2.14.3.0-r0 apk
sord-libs 0.16.16-r0 apk
soupsieve 2.8.3 python
soxr 0.1.3-r7 apk
speex 1.2.1-r2 apk
speexdsp 1.2.1-r2 apk
spirv-tools 1.3.296.0-r0 apk
sqlite-libs 3.48.0-r4 apk
sratom 0.6.16-r0 apk
ssl_client 1.37.0-r14 apk
tdb-libs 1.4.12-r0 apk
tiff 4.7.1-r0 apk
typing-extensions 4.15.0 python
tzdata 2025c-r0 apk
unidecode 1.4.0 python
urllib3 2.6.3 python
utmps-libs 0.1.2.3-r2 apk
v4l-utils-libs 1.28.1-r1 apk
vidstab 1.1.1-r0 apk
vulkan-loader 1.3.296.0-r0 apk
wavpack-libs 5.7.0-r0 apk
wayland-libs-client 1.23.1-r0 apk
wayland-libs-cursor 1.23.1-r0 apk
wayland-libs-egl 1.23.1-r0 apk
wayland-libs-server 1.23.1-r0 apk
werkzeug 3.1.5 python
wheel 0.46.3 python
x264-libs 0.164.3108-r0 apk
x265-libs 3.6-r0 apk
xvidcore 1.3.7-r2 apk
xz-libs 5.6.3-r1 apk
zimg 3.0.5-r2 apk
zix-libs 0.4.2-r0 apk
zlib 1.3.1-r2 apk
zstd-libs 1.5.6-r2 apk

View file

@ -6,117 +6,53 @@ project_url: "http://beets.io/"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/beets-icon.png" project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/beets-icon.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) 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." project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) 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."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_categories: "Music"
project_blurb_optional_extras_enabled: false
project_blurb_optional_extras: []
# supported architectures # supported architectures
available_architectures: available_architectures:
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
# development version - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
development_versions: true
development_versions_items:
- {tag: "latest", desc: "Stable Beets Releases"}
- {tag: "nightly", desc: "Built against head of Beets git, generally considered unstable but a likely choice for power users of the application."}
# container parameters # container parameters
common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional' common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional'
param_container_name: "{{ project_name }}" param_container_name: "{{ project_name }}"
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
param_usage_include_vols: true param_usage_include_vols: true
param_volumes: param_volumes:
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files"} - { vol_path: "/config", vol_host_path: "</path/to/appdata/config>", desc: "Configuration files." }
- {vol_path: "/music", vol_host_path: "/path/to/music/library", desc: "Music library"} - { vol_path: "/music", vol_host_path: "</path/to/music/library>", desc: "Music library" }
- {vol_path: "/downloads", vol_host_path: "/path/to/ingest", desc: "Non processed music"} - { vol_path: "/downloads", vol_host_path: "</path/to/ingest>", desc: "Non processed music" }
param_usage_include_ports: true param_usage_include_ports: true
param_ports: param_ports:
- {external_port: "8337", internal_port: "8337", port_desc: "Application WebUI"} - { external_port: "8337", internal_port: "8337", port_desc: "Application WebUI" }
readonly_supported: true
nonroot_supported: true
# application setup block
app_setup_block_enabled: true
app_setup_block: |
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](http://beets.io/) for more info.
Contains [beets-extrafiles](https://github.com/Holzhaus/beets-extrafiles) plugin, [configuration details](https://github.com/Holzhaus/beets-extrafiles#usage)
# init diagram
init_diagram: |
"beets:latest": {
docker-mods
base {
fix-attr +\nlegacy cont-init
}
docker-mods -> base
legacy-services
custom services
init-services -> legacy-services
init-services -> custom services
custom services -> legacy-services
legacy-services -> ci-service-check
init-migrations -> init-adduser
init-config -> init-beets-config
init-os-end -> init-config
init-config -> init-config-end
init-crontab-config -> init-config-end
init-config -> init-crontab-config
init-mods-end -> init-custom-files
init-adduser -> init-device-perms
base -> init-envfile
base -> init-migrations
init-config-end -> init-mods
init-mods-package-install -> init-mods-end
init-mods -> init-mods-package-install
init-adduser -> init-os-end
init-device-perms -> init-os-end
init-envfile -> init-os-end
init-custom-files -> init-services
init-services -> svc-beets
svc-beets -> legacy-services
init-services -> svc-cron
svc-cron -> legacy-services
}
Base Images: {
"baseimage-alpine:3.21"
}
"beets:latest" <- Base Images
# changelog # changelog
changelogs: changelogs:
- {date: "27.01.25:", desc: "Rebase to Alpine 3.21."} - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- {date: "01.10.24:", desc: "Add packages required for Discogs plugin."} - { date: "01.03.19:", desc: "Switch to python3." }
- {date: "28.08.24:", desc: "Rebase to Alpine 3.20, switch from Pillow to Imagemagick."} - { date: "07.02.19:", desc: "Add fftw-dev build dependency for chromaprint." }
- {date: "23.12.23:", desc: "Rebase to Alpine 3.19."} - { date: "28.01.19:", desc: "Add pipeline logic and multi arch." }
- {date: "25.08.23:", desc: "Rebase to Alpine 3.18, pin Pillow to 9.5.0."} - { date: "15.08.18:", desc: "Rebase to alpine 3.8, use alpine repo version of pylast." }
- {date: "07.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"} - { date: "12.08.18:", desc: "Add requests pip package." }
- {date: "25.03.23:", desc: "Add requests_oauthlib required for [beatport plugin](https://beets.readthedocs.io/en/stable/plugins/beatport.html)."} - { date: "04.03.18:", desc: "Upgrade mp3gain to 1.6.1." }
- {date: "24.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3, install chromaprint from Alpine repos, add beetcamp plugin."} - { date: "02.01.18:", desc: "Deprecate cpu_core routine lack of scaling." }
- {date: "15.01.22:", desc: "Rebasing to alpine 3.15."} - { date: "27.12.17:", desc: "Add beautifulsoup4 pip package." }
- {date: "19.12.19:", desc: "Rebasing to alpine 3.11."} - { date: "06.12.17:", desc: "Rebase to alpine linux 3.7." }
- {date: "28.06.19:", desc: "Rebasing to alpine 3.10."} - { date: "25.05.17:", desc: "Rebase to alpine linux 3.6." }
- {date: "12.05.19:", desc: "Add flac and mp3val binaries required for badfiles plugin."} - { date: "06.02.17:", desc: "Rebase to alpine linux 3.5." }
- {date: "12.04.19:", desc: "Rebase to Alpine 3.9."} - { date: "16.01.17:", desc: "Add packages required for replaygain." }
- {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."} - { date: "24.12.16:", desc: "Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin." }
- {date: "11.03.19:", desc: "Swap copyartifacts for extrafiles, update endpoints with nightly tag."} - { date: "07.12.16:", desc: "Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib" }
- {date: "01.03.19:", desc: "Switch to python3."} - { date: "14.10.16:", desc: "Add version layer information." }
- {date: "07.02.19:", desc: "Add fftw-dev build dependency for chromaprint."} - { date: "01.10.16:", desc: "Add nano and editor variable to allow editing of the config from the container command line." }
- {date: "28.01.19:", desc: "Add pipeline logic and multi arch."} - { date: "30.09.16:", desc: "Fix umask." }
- {date: "15.08.18:", desc: "Rebase to alpine 3.8, use alpine repo version of pylast."} - { date: "24.09.16:", desc: "Rebase to alpine linux." }
- {date: "12.08.18:", desc: "Add requests pip package."} - { date: "10.09.16:", desc: "Add layer badges to README." }
- {date: "04.03.18:", desc: "Upgrade mp3gain to 1.6.1."} - { date: "05.01.16:", desc: "Change ffpmeg repository, other version crashes container" }
- {date: "02.01.18:", desc: "Deprecate cpu_core routine lack of scaling."} - { date: "06.11.15:", desc: "Initial Release" }
- {date: "27.12.17:", desc: "Add beautifulsoup4 pip package."} - { date: "29.11.15:", desc: "Take out term setting, causing issues with key entry for some users" }
- {date: "06.12.17:", desc: "Rebase to alpine linux 3.7."}
- {date: "25.05.17:", desc: "Rebase to alpine linux 3.6."}
- {date: "06.02.17:", desc: "Rebase to alpine linux 3.5."}
- {date: "16.01.17:", desc: "Add packages required for replaygain."}
- {date: "24.12.16:", desc: "Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin."}
- {date: "07.12.16:", desc: "Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib"}
- {date: "14.10.16:", desc: "Add version layer information."}
- {date: "01.10.16:", desc: "Add nano and editor variable to allow editing of the config from the container command line."}
- {date: "30.09.16:", desc: "Fix umask."}
- {date: "24.09.16:", desc: "Rebase to alpine linux."}
- {date: "10.09.16:", desc: "Add layer badges to README."}
- {date: "05.01.16:", desc: "Change ffpmeg repository, other version crashes container"}
- {date: "06.11.15:", desc: "Initial Release"}
- {date: "29.11.15:", desc: "Take out term setting, causing issues with key entry for some users"}

View file

@ -1,5 +1,4 @@
#!/usr/bin/with-contenv bash #!/bin/bash
# shellcheck shell=bash
# #
# beets music tagger - post-processing script # beets music tagger - post-processing script
# #
@ -9,7 +8,7 @@
# $1 - Fullpath of directory to be processed. eg./mnt/user/downloads/some.artist_some.album # $1 - Fullpath of directory to be processed. eg./mnt/user/downloads/some.artist_some.album
# $7 - Status of post processing. 0 = OK, 1 = failed verification, 2 = failed unpack, 3 = 1+2 # $7 - Status of post processing. 0 = OK, 1 = failed verification, 2 = failed unpack, 3 = 1+2
if [ -n "$7" ] && [ "$7" -gt 0 ]; then if [ ! -z "$7" ] && [ "$7" -gt 0 ]; then
echo "post-processing failed, bypassing script" echo "post-processing failed, bypassing script"
exit 1 exit 1
fi fi
@ -17,11 +16,11 @@ fi
# process files # process files
echo "--------------------------" echo "--------------------------"
printf %b "$(date)\n" printf %b "$(date)\n"
echo "Starting beets.sh for $(basename "$1")" echo "Starting beets.sh for $(basename $1)"
BEETSDIR=/config BEETSDIR=/config
export BEETSDIR export BEETSDIR
FPCALC=/usr/bin/fpcalc FPCALC=/usr/bin/fpcalc
export FPCALC export FPCALC
/lsiopy/bin/beet -v import -q "$1" /usr/local/bin/beet -v import -q "$1"

View file

@ -21,8 +21,8 @@ paths:
import: import:
write: yes write: yes
copy: yes copy: no
move: no move: yes
resume: ask resume: ask
incremental: yes incremental: yes
quiet_fallback: skip quiet_fallback: skip

View file

@ -0,0 +1,11 @@
#!/usr/bin/with-contenv bash
# copy config
[[ ! -e /config/beets.sh ]] && \
cp /defaults/beets.sh /config/beets.sh
[[ ! -e /config/config.yaml ]] && \
cp /defaults/config.yaml /config/config.yaml
# permissions
chown -R abc:abc \
/config

View file

@ -1,14 +0,0 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# copy config
cp -n /defaults/beets.sh /config/beets.sh
cp -n /defaults/config.yaml /config/config.yaml
chmod +x /config/beets.sh
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
# permissions
lsiown -R abc:abc \
/config
fi

View file

@ -1 +0,0 @@
oneshot

View file

@ -1 +0,0 @@
/etc/s6-overlay/s6-rc.d/init-beets-config/run

View file

@ -1,12 +0,0 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8337" \
s6-setuidgid abc beet web
else
exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8337" \
beet web
fi

View file

@ -1 +0,0 @@
longrun

View file

@ -0,0 +1,5 @@
#!/usr/bin/with-contenv bash
umask 022
exec \
s6-setuidgid abc beet web