Compare commits

..

No commits in common. "master" and "6.0-cli-ls103" have entirely different histories.

22 changed files with 773 additions and 1783 deletions

0
.editorconfig Normal file → Executable file
View File

6
.github/CONTRIBUTING.md vendored Normal file → Executable file
View File

@ -6,7 +6,7 @@
* Read, and fill the Pull Request template * 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 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 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) * 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://discord.gg/YWrKVTn)
## Common files ## Common files
@ -105,10 +105,10 @@ docker build \
-t linuxserver/ffmpeg:latest . -t linuxserver/ffmpeg: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 ```bash
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset docker run --rm --privileged multiarch/qemu-user-static:register --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`.

2
.github/ISSUE_TEMPLATE/config.yml vendored Normal file → Executable file
View File

@ -1,7 +1,7 @@
blank_issues_enabled: false blank_issues_enabled: false
contact_links: contact_links:
- name: Discord chat support - name: Discord chat support
url: https://linuxserver.io/discord url: https://discord.gg/YWrKVTn
about: Realtime support / chat with the community and the team. about: Realtime support / chat with the community and the team.
- name: Discourse discussion forum - name: Discourse discussion forum

4
.github/ISSUE_TEMPLATE/issue.bug.yml vendored Normal file → Executable file
View File

@ -59,10 +59,10 @@ body:
- type: textarea - type: textarea
attributes: attributes:
description: | description: |
Provide a full docker log, output of "docker logs ffmpeg" Provide a full docker log, output of "docker logs linuxserver.io"
label: Container logs label: Container logs
placeholder: | placeholder: |
Output of `docker logs ffmpeg` Output of `docker logs linuxserver.io`
render: bash render: bash
validations: validations:
required: true required: true

0
.github/ISSUE_TEMPLATE/issue.feature.yml vendored Normal file → Executable file
View File

0
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file → Executable file
View File

3
.github/workflows/call_issue_pr_tracker.yml vendored Normal file → Executable file
View File

@ -8,9 +8,6 @@ on:
pull_request_review: pull_request_review:
types: [submitted,edited,dismissed] types: [submitted,edited,dismissed]
permissions:
contents: read
jobs: jobs:
manage-project: manage-project:
permissions: permissions:

3
.github/workflows/call_issues_cron.yml vendored Normal file → Executable file
View File

@ -4,9 +4,6 @@ on:
- cron: '15 0 * * *' - cron: '15 0 * * *'
workflow_dispatch: workflow_dispatch:
permissions:
contents: read
jobs: jobs:
stale: stale:
permissions: permissions:

111
.github/workflows/external_trigger.yml vendored Normal file → Executable file
View File

@ -3,42 +3,26 @@ name: External Trigger Main
on: on:
workflow_dispatch: workflow_dispatch:
permissions:
contents: read
jobs: jobs:
external-trigger-master: external-trigger-master:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.1.1 - uses: actions/checkout@v3.1.0
- name: External Trigger - name: External Trigger
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
env:
SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }}
run: | run: |
printf "# External trigger for docker-ffmpeg\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER }}" ]; then
if grep -q "^ffmpeg_master_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER is set; skipping trigger. ****"
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`ffmpeg_master_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY
elif grep -q "^ffmpeg_master" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`ffmpeg_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 \`ffmpeg_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
EXT_RELEASE=$(echo 8.0.1-cli)
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
if grep -q "^ffmpeg_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 exit 0
fi fi
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER\". ****"
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_FFMPEG_MASTER\`" >> $GITHUB_STEP_SUMMARY
echo "**** Retrieving external version ****"
EXT_RELEASE=$(echo 6.0-cli)
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "**** Can't retrieve external version, exiting ****"
echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="Can't retrieve external version for ffmpeg branch master" FAILURE_REASON="Can't retrieve external version for ffmpeg branch master"
GHA_TRIGGER_URL="https://github.com/linuxserver/docker-ffmpeg/actions/runs/${{ github.run_id }}" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-ffmpeg/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, curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680,
@ -46,9 +30,10 @@ jobs:
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
exit 1 exit 1
fi fi
EXT_RELEASE_SANITIZED=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g')
echo "Sanitized external version: \`${EXT_RELEASE_SANITIZED}\`" >> $GITHUB_STEP_SUMMARY echo "**** External version: ${EXT_RELEASE} ****"
echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY
echo "**** Retrieving last pushed version ****"
image="linuxserver/ffmpeg" image="linuxserver/ffmpeg"
tag="latest" tag="latest"
token=$(curl -sX GET \ token=$(curl -sX GET \
@ -56,33 +41,14 @@ jobs:
| jq -r '.token') | jq -r '.token')
multidigest=$(curl -s \ multidigest=$(curl -s \
--header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
--header "Accept: application/vnd.oci.image.index.v1+json" \
--header "Authorization: Bearer ${token}" \ --header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/manifests/${tag}") "https://ghcr.io/v2/${image}/manifests/${tag}" \
if jq -e '.layers // empty' <<< "${multidigest}" >/dev/null 2>&1; then | jq -r 'first(.manifests[].digest)')
# If there's a layer element it's a single-arch manifest so just get that digest digest=$(curl -s \
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.docker.distribution.manifest.v2+json" \
--header "Accept: application/vnd.oci.image.manifest.v1+json" \
--header "Authorization: Bearer ${token}" \ --header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/manifests/${multidigest}"); then "https://ghcr.io/v2/${image}/manifests/${multidigest}" \
digest=$(jq -r '.config.digest' <<< "${digest}"); | jq -r '.config.digest')
fi
fi
image_info=$(curl -sL \ image_info=$(curl -sL \
--header "Authorization: Bearer ${token}" \ --header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/${image}/blobs/${digest}") "https://ghcr.io/v2/${image}/blobs/${digest}")
@ -94,54 +60,45 @@ jobs:
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
if [ -z "${IMAGE_VERSION}" ]; then if [ -z "${IMAGE_VERSION}" ]; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "**** Can't retrieve last pushed version, exiting ****"
echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="Can't retrieve last pushed version for ffmpeg tag latest" FAILURE_REASON="Can't retrieve last pushed version for ffmpeg tag latest"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, 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"}], "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
exit 1 exit 1
fi fi
echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY echo "**** Last pushed version: ${IMAGE_VERSION} ****"
if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY
echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then
echo "**** Version ${EXT_RELEASE} already pushed, exiting ****"
echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY
exit 0 exit 0
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/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 echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****"
echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY
exit 0 exit 0
else else
if [[ "${artifacts_found}" == "false" ]]; then echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****"
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $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 ffmpeg 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 \ response=$(curl -iX POST \
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/master/buildWithParameters?PACKAGE_CHECK=false \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/master/buildWithParameters?PACKAGE_CHECK=false \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") --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 "**** Jenkins job queue url: ${response%$'\r'} ****"
echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY echo "**** Sleeping 10 seconds until job starts ****"
sleep 10 sleep 10
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
buildurl="${buildurl%$'\r'}" buildurl="${buildurl%$'\r'}"
echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY echo "**** Jenkins job build url: ${buildurl} ****"
echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
echo "**** Attempting to change the Jenkins job description ****"
curl -iX POST \ curl -iX POST \
"${buildurl}submitDescription" \ "${buildurl}submitDescription" \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ --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 "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
--data-urlencode "Submit=Submit" --data-urlencode "Submit=Submit"
echo "**** Notifying Discord ****" echo "**** Notifying Discord ****"
TRIGGER_REASON="A version change was detected for ffmpeg tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}" TRIGGER_REASON="A version change was detected for ffmpeg tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}"
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, 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"}], "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
fi fi
fi

29
.github/workflows/external_trigger_scheduler.yml vendored Normal file → Executable file
View File

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

6
.github/workflows/greetings.yml vendored Normal file → Executable file
View File

@ -2,14 +2,8 @@ name: Greetings
on: [pull_request_target, issues] on: [pull_request_target, issues]
permissions:
contents: read
jobs: jobs:
greeting: greeting:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/first-interaction@v1 - uses: actions/first-interaction@v1

42
.github/workflows/package_trigger.yml vendored Executable file
View File

@ -0,0 +1,42 @@
name: Package Trigger Main
on:
workflow_dispatch:
jobs:
package-trigger-master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- name: Package Trigger
if: github.ref == 'refs/heads/master'
run: |
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_FFMPEG_MASTER }}" ]; then
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_FFMPEG_MASTER is set; skipping trigger. ****"
echo "Github secret \`PAUSE_PACKAGE_TRIGGER_FFMPEG_MASTER\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY
exit 0
fi
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY
exit 0
fi
echo "**** Package trigger running off of master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_FFMPEG_MASTER\". ****"
echo "Package trigger running off of master branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_FFMPEG_MASTER\`" >> $GITHUB_STEP_SUMMARY
response=$(curl -iX POST \
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/master/buildWithParameters?PACKAGE_CHECK=true \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|")
echo "**** Jenkins job queue url: ${response%$'\r'} ****"
echo "**** Sleeping 10 seconds until job starts ****"
sleep 10
buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url')
buildurl="${buildurl%$'\r'}"
echo "**** Jenkins job build url: ${buildurl} ****"
echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY
echo "**** Attempting to change the Jenkins job description ****"
curl -iX 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"

99
.github/workflows/package_trigger_scheduler.yml vendored Normal file → Executable file
View File

@ -5,99 +5,46 @@ on:
- cron: '59 21 * * 4' - cron: '59 21 * * 4'
workflow_dispatch: workflow_dispatch:
permissions:
contents: read
jobs: jobs:
package-trigger-scheduler: package-trigger-scheduler:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.1.1 - uses: actions/checkout@v3.1.0
with: with:
fetch-depth: '0' fetch-depth: '0'
- name: Package Trigger Scheduler - name: Package Trigger Scheduler
env:
SKIP_PACKAGE_TRIGGER: ${{ vars.SKIP_PACKAGE_TRIGGER }}
run: | run: |
printf "# Package trigger scheduler for docker-ffmpeg\n\n" >> $GITHUB_STEP_SUMMARY echo "**** Branches found: ****"
printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY git for-each-ref --format='%(refname:short)' refs/remotes
for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes) for br in $(git for-each-ref --format='%(refname:short)' refs/remotes)
do do
if [[ "${br}" == "HEAD" ]]; then br=$(echo "$br" | sed 's|origin/||g')
printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY echo "**** Evaluating branch ${br} ****"
continue ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-ffmpeg/${br}/jenkins-vars.yml | yq -r '.ls_branch')
fi if [ "${br}" == "${ls_branch}" ]; then
printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY echo "**** Branch ${br} appears to be live; checking workflow. ****"
JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-ffmpeg/${br}/jenkins-vars.yml) if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-ffmpeg/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then
if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-ffmpeg/${br}/Jenkinsfile >/dev/null 2>&1; then echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****"
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "Triggering package trigger workflow for branch ${br}" >> $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-ffmpeg/${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 "^ffmpeg_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY
echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`ffmpeg_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY
skipped_branches="${skipped_branches}${br} "
elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/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 \`ffmpeg_%s\` into the Github organizational variable \`SKIP_PACKAGE_TRIGGER\`.\n\n" "${br}" >> $GITHUB_STEP_SUMMARY
triggered_branches="${triggered_branches}${br} " triggered_branches="${triggered_branches}${br} "
response=$(curl -iX POST \ curl -iX POST \
https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-ffmpeg/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ -H "Authorization: token ${{ secrets.CR_PAT }}" \
--user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") -H "Accept: application/vnd.github.v3+json" \
if [[ -z "${response}" ]]; then -d "{\"ref\":\"refs/heads/${br}\"}" \
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY https://api.github.com/repos/linuxserver/docker-ffmpeg/actions/workflows/package_trigger.yml/dispatches
echo "> Jenkins build could not be triggered. Skipping branch." sleep 30
continue else
fi echo "**** Workflow doesn't exist; skipping trigger. ****"
echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY echo "Skipping branch ${br} due to no package trigger workflow present." >> $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 fi
else else
echo "**** ${br} appears to be a dev branch; skipping trigger. ****"
echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY
fi fi
done 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-ffmpeg/activity/ \n"
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" 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 ****" 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, 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 ffmpeg** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "description": "**Package Check Build(s) Triggered for ffmpeg** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-ffmpeg/activity/"' \n"}],
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
fi

2
.github/workflows/permissions.yml vendored Normal file → Executable file
View File

@ -5,8 +5,6 @@ on:
- '**/run' - '**/run'
- '**/finish' - '**/finish'
- '**/check' - '**/check'
- 'root/migrations/*'
jobs: jobs:
permission_check: permission_check:
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

View File

@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
# build stage # build stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble AS buildstage FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy as buildstage
# set version label # set version label
ARG FFMPEG_VERSION ARG FFMPEG_VERSION
@ -9,136 +9,92 @@ ARG FFMPEG_VERSION
# common env # common env
ENV \ ENV \
DEBIAN_FRONTEND="noninteractive" \ DEBIAN_FRONTEND="noninteractive" \
MAKEFLAGS="-j4" \ MAKEFLAGS="-j4"
CMAKE_POLICY_VERSION_MINIMUM="3.5" \
PATH="/root/.cargo/bin:${PATH}"
# versions # versions
ENV \ ENV \
AOM=v3.13.1 \ AOM=v3.7.0 \
FDKAAC=2.0.3 \ FDKAAC=2.0.2 \
FFMPEG_HARD=8.0.1 \ FFMPEG_HARD=6.0 \
FONTCONFIG=2.16.0 \ FONTCONFIG=2.14.2 \
FREETYPE=2.14.1 \ FREETYPE=2.13.2 \
FRIBIDI=1.0.16 \ FRIBIDI=1.0.13 \
GMMLIB=22.8.2 \ GMMLIB=22.3.7 \
HARFBUZZ=12.3.0 \ IHD=23.2.4 \
IHD=25.3.4 \ KVAZAAR=2.2.0 \
KVAZAAR=2.3.2 \
LAME=3.100 \ LAME=3.100 \
LIBASS=0.17.4 \ LIBASS=0.17.1 \
LIBDAV1D=1.5.3 \ LIBDRM=2.4.116 \
LIBDOVI=2.3.1 \
LIBDRM=2.4.131 \
LIBGL=1.7.0 \
LIBLC3=1.1.3 \
LIBMFX=22.5.4 \ LIBMFX=22.5.4 \
LIBPLACEBO=7.351.0 \ LIBVA=2.19.0 \
LIBPNG=1.6.53 \
LIBVA=2.23.0 \
LIBVDPAU=1.5 \ LIBVDPAU=1.5 \
LIBVIDSTAB=1.1.1 \ LIBVIDSTAB=1.1.1 \
LIBVMAF=3.0.0 \ LIBVMAF=2.3.1 \
LIBVPL=2.16.0 \ LIBVPL=2023.3.1 \
MESA=25.3.3 \ NVCODEC=n12.0.16.0 \
NVCODEC=n13.0.19.0 \ OGG=1.3.5 \
OGG=1.3.6 \ ONEVPL=23.2.4 \
OPENCOREAMR=0.1.6 \ OPENCOREAMR=0.1.6 \
OPENJPEG=2.5.4 \ OPENJPEG=2.5.0 \
OPUS=1.6 \ OPUS=1.3.1 \
RAV1E=0.8.1 \ SVTAV1=1.7.0 \
RIST=0.2.11 \ THEORA=1.1.1 \
SHADERC=v2025.5 \
SRT=1.5.4 \
SVTAV1=3.1.2 \
THEORA=1.2.0 \
VORBIS=1.3.7 \ VORBIS=1.3.7 \
VPLGPURT=25.3.4 \ VPX=1.13.1 \
VPX=1.15.2 \ WEBP=1.3.2 \
VULKANSDK=vulkan-sdk-1.4.335.0 \ X265=3.5 \
VVENC=1.13.1 \ XVID=1.3.7
WEBP=1.6.0 \
X265=4.1 \
XVID=1.3.7 \
ZIMG=3.0.6 \
ZMQ=v4.3.5
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
apt-get update && \ apt-get update && \
apt-get install --no-install-recommends -y \ apt-get install -y \
autoconf \ autoconf \
automake \ automake \
bindgen \
bison \
build-essential \
bzip2 \ bzip2 \
cmake \ cmake \
clang \
diffutils \ diffutils \
doxygen \ doxygen \
flex \
g++ \ g++ \
gcc \ gcc \
git \ git \
gperf \ gperf \
i965-va-driver-shaders \ i965-va-driver-shaders \
libasound2-dev \
libcairo2-dev \
libclang-18-dev \
libclang-cpp18-dev \
libclc-18 \
libclc-18-dev \
libelf-dev \
libexpat1-dev \ libexpat1-dev \
libgcc-10-dev \ libgcc-10-dev \
libglib2.0-dev \
libgomp1 \ libgomp1 \
libllvmspirvlib-18-dev \ libharfbuzz-dev \
libpciaccess-dev \ libpciaccess-dev \
libssl-dev \ libssl-dev \
libtool \ libtool \
libv4l-dev \ libv4l-dev \
libwayland-dev \ libwayland-dev \
libwayland-egl-backend-dev \
libx11-dev \ libx11-dev \
libx11-xcb-dev \ libx11-xcb-dev \
libxcb-dri2-0-dev \
libxcb-dri3-dev \ libxcb-dri3-dev \
libxcb-glx0-dev \
libxcb-present-dev \ libxcb-present-dev \
libxext-dev \ libxext-dev \
libxfixes-dev \ libxfixes-dev \
libxml2-dev \ libxml2-dev \
libxrandr-dev \
libxshmfence-dev \
libxxf86vm-dev \
llvm-18-dev \
llvm-spirv-18 \
make \ make \
nasm \ nasm \
ninja-build \
ocl-icd-opencl-dev \ ocl-icd-opencl-dev \
perl \ perl \
pkg-config \ pkg-config \
python3-venv \ python3-venv \
x11proto-gl-dev \ wayland-protocols \
x11proto-xext-dev \ x11proto-xext-dev \
xserver-xorg-dev \
xxd \ xxd \
yasm \ yasm \
zlib1g-dev && \ zlib1g-dev && \
mkdir -p /tmp/rust && \
RUST_VERSION=$(curl -fsX GET https://api.github.com/repos/rust-lang/rust/releases/latest | jq -r '.tag_name') && \
curl -fo /tmp/rust.tar.gz -L "https://static.rust-lang.org/dist/rust-${RUST_VERSION}-x86_64-unknown-linux-gnu.tar.gz" && \
tar xf /tmp/rust.tar.gz -C /tmp/rust --strip-components=1 && \
cd /tmp/rust && \
./install.sh && \
cargo install bindgen-cli cargo-c cbindgen --locked && \
python3 -m venv /lsiopy && \ python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \ pip install -U --no-cache-dir \
pip \ pip \
setuptools \ setuptools \
wheel && \ wheel && \
pip install --no-cache-dir cmake==3.31.6 mako meson ninja packaging ply pyyaml pip install --no-cache-dir meson cmake
# compile 3rd party libs # compile 3rd party libs
RUN \ RUN \
@ -175,14 +131,13 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libfdk-aac.so
RUN \ RUN \
echo "**** grabbing ffnvcodec ****" && \ echo "**** grabbing ffnvcodec ****" && \
mkdir -p /tmp/ffnvcodec && \ mkdir -p /tmp/ffnvcodec && \
git clone \ git clone \
--branch ${NVCODEC} \ --branch ${NVCODEC} \
--depth 1 https://github.com/FFmpeg/nv-codec-headers.git \ --depth 1 https://git.videolan.org/git/ffmpeg/nv-codec-headers.git \
/tmp/ffnvcodec /tmp/ffnvcodec
RUN \ RUN \
echo "**** compiling ffnvcodec ****" && \ echo "**** compiling ffnvcodec ****" && \
@ -201,14 +156,13 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libfreetype.so
RUN \ RUN \
echo "**** grabbing fontconfig ****" && \ echo "**** grabbing fontconfig ****" && \
mkdir -p /tmp/fontconfig && \ mkdir -p /tmp/fontconfig && \
curl -Lf \ curl -Lf \
https://www.freedesktop.org/software/fontconfig/release/fontconfig-${FONTCONFIG}.tar.xz | \ https://www.freedesktop.org/software/fontconfig/release/fontconfig-${FONTCONFIG}.tar.gz | \
tar -xJ --strip-components=1 -C /tmp/fontconfig tar -zx --strip-components=1 -C /tmp/fontconfig
RUN \ RUN \
echo "**** compiling fontconfig ****" && \ echo "**** compiling fontconfig ****" && \
cd /tmp/fontconfig && \ cd /tmp/fontconfig && \
@ -216,8 +170,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libfontconfig.so
RUN \ RUN \
echo "**** grabbing fribidi ****" && \ echo "**** grabbing fribidi ****" && \
mkdir -p /tmp/fribidi && \ mkdir -p /tmp/fribidi && \
@ -232,20 +185,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make -j 1 && \ make -j 1 && \
make install && \ make install
strip -d /usr/local/lib/libfribidi.so
RUN \
echo "**** grabbing harfbuzz ****" && \
mkdir -p /tmp/harfbuzz && \
curl -Lf \
https://github.com/harfbuzz/harfbuzz/archive/${HARFBUZZ}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/harfbuzz
RUN \
echo "**** compiling harfbuzz ****" && \
cd /tmp/harfbuzz && \
meson build && \
ninja -C build install && \
strip -d /usr/local/lib/x86_64-linux-gnu/libharfbuzz*.so
RUN \ RUN \
echo "**** grabbing kvazaar ****" && \ echo "**** grabbing kvazaar ****" && \
mkdir -p /tmp/kvazaar && \ mkdir -p /tmp/kvazaar && \
@ -260,8 +200,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libkvazaar.so
RUN \ RUN \
echo "**** grabbing lame ****" && \ echo "**** grabbing lame ****" && \
mkdir -p /tmp/lame && \ mkdir -p /tmp/lame && \
@ -298,42 +237,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libass.so
RUN \
echo "**** grabbing libdav1d ****" && \
mkdir -p /tmp/libdav1d && \
git clone \
--branch ${LIBDAV1D} \
https://code.videolan.org/videolan/dav1d \
/tmp/libdav1d
RUN \
echo "**** compiling libdav1d ****" && \
mkdir -p /tmp/libdav1d/build && \
cd /tmp/libdav1d/build && \
meson setup .. && \
ninja install
RUN \
echo "**** grabbing libgl ****" && \
mkdir -p /tmp/libgl && \
curl -Lf \
https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${LIBGL}/libglvnd-v${LIBGL}.tar.gz | \
tar -xz --strip-components=1 -C /tmp/libgl
RUN \
echo "**** compiling libgl ****" && \
cd /tmp/libgl && \
meson setup \
--buildtype=release \
build && \
ninja -C build install && \
strip -d \
/usr/local/lib/x86_64-linux-gnu/libEGL.so \
/usr/local/lib/x86_64-linux-gnu/libGLdispatch.so \
/usr/local/lib/x86_64-linux-gnu/libGLESv1_CM.so \
/usr/local/lib/x86_64-linux-gnu/libGLESv2.so \
/usr/local/lib/x86_64-linux-gnu/libGL.so \
/usr/local/lib/x86_64-linux-gnu/libGLX.so \
/usr/local/lib/x86_64-linux-gnu/libOpenGL.so
RUN \ RUN \
echo "**** grabbing libdrm ****" && \ echo "**** grabbing libdrm ****" && \
mkdir -p /tmp/libdrm && \ mkdir -p /tmp/libdrm && \
@ -350,19 +254,6 @@ RUN \
ninja -C build && \ ninja -C build && \
ninja -C build install && \ ninja -C build install && \
strip -d /usr/local/lib/x86_64-linux-gnu/libdrm*.so strip -d /usr/local/lib/x86_64-linux-gnu/libdrm*.so
RUN \
echo "**** grabbing liblc3 ****" && \
mkdir -p /tmp/liblc3 && \
git clone \
--branch v${LIBLC3} \
--depth 1 \
https://github.com/google/liblc3.git \
/tmp/liblc3
RUN \
echo "**** compiling liblc3 ****" && \
cd /tmp/liblc3 && \
meson setup build && \
meson install -C build --strip
RUN \ RUN \
echo "**** grabbing libva ****" && \ echo "**** grabbing libva ****" && \
mkdir -p /tmp/libva && \ mkdir -p /tmp/libva && \
@ -384,56 +275,6 @@ RUN \
/usr/local/lib/libva-glx.so \ /usr/local/lib/libva-glx.so \
/usr/local/lib/libva-wayland.so \ /usr/local/lib/libva-wayland.so \
/usr/local/lib/libva-x11.so /usr/local/lib/libva-x11.so
RUN \
echo "**** grabbing libvdpau ****" && \
mkdir -p /tmp/libvdpau && \
git clone \
--branch ${LIBVDPAU} \
--depth 1 https://gitlab.freedesktop.org/vdpau/libvdpau.git \
/tmp/libvdpau
RUN \
echo "**** compiling libvdpau ****" && \
cd /tmp/libvdpau && \
meson setup \
--prefix=/usr --libdir=/usr/local/lib \
-Ddocumentation=false \
build && \
ninja -C build install && \
strip -d /usr/local/lib/libvdpau.so
RUN \
echo "**** grabbing shaderc ****" && \
mkdir -p /tmp/shaderc && \
git clone \
--branch ${SHADERC} \
--depth 1 https://github.com/google/shaderc.git \
/tmp/shaderc
RUN \
echo "**** compiling shaderc ****" && \
cd /tmp/shaderc && \
./utils/git-sync-deps && \
mkdir -p build && \
cd build && \
cmake -GNinja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr/local \
.. && \
ninja install
RUN \
echo "**** grabbing mesa ****" && \
mkdir -p /tmp/mesa && \
curl -Lf \
https://archive.mesa3d.org/mesa-${MESA}.tar.xz | \
tar -xJ --strip-components=1 -C /tmp/mesa
RUN \
echo "**** compiling mesa ****" && \
cd /tmp/mesa && \
meson setup \
-Dprefix="/usr/local" \
-Dbuildtype=release \
-Dvideo-codecs=all \
builddir/ && \
meson compile -C builddir/ && \
meson install -C builddir/
RUN \ RUN \
echo "**** grabbing gmmlib ****" && \ echo "**** grabbing gmmlib ****" && \
mkdir -p /tmp/gmmlib && \ mkdir -p /tmp/gmmlib && \
@ -461,16 +302,16 @@ RUN \
mkdir -p /tmp/ihd/build && \ mkdir -p /tmp/ihd/build && \
cd /tmp/ihd/build && \ cd /tmp/ihd/build && \
cmake \ cmake \
-DLIBVA_DRIVERS_PATH=/usr/local/lib/x86_64-linux-gnu/dri/ \ -DLIBVA_DRIVERS_PATH=/usr/lib/x86_64-linux-gnu/dri/ \
.. && \ .. && \
make && \ make && \
make install && \ make install && \
strip -d /usr/local/lib/x86_64-linux-gnu/dri/iHD_drv_video.so strip -d /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
RUN \ RUN \
echo "**** grabbing libvpl ****" && \ echo "**** grabbing libvpl ****" && \
mkdir -p /tmp/libvpl && \ mkdir -p /tmp/libvpl && \
curl -Lf \ curl -Lf \
https://github.com/intel/libvpl/archive/refs/tags/v${LIBVPL}.tar.gz | \ https://github.com/oneapi-src/oneVPL/archive/refs/tags/v${LIBVPL}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/libvpl tar -zx --strip-components=1 -C /tmp/libvpl
RUN \ RUN \
echo "**** compiling libvpl ****" && \ echo "**** compiling libvpl ****" && \
@ -481,15 +322,15 @@ RUN \
cmake --build . --config Release --target install && \ cmake --build . --config Release --target install && \
strip -d /usr/local/lib/libvpl.so strip -d /usr/local/lib/libvpl.so
RUN \ RUN \
echo "**** grabbing vpl-gpu-rt ****" && \ echo "**** grabbing onevpl ****" && \
mkdir -p /tmp/vpl-gpu-rt && \ mkdir -p /tmp/onevpl && \
curl -Lf \ curl -Lf \
https://github.com/intel/vpl-gpu-rt/archive/refs/tags/intel-onevpl-${VPLGPURT}.tar.gz | \ https://github.com/oneapi-src/oneVPL-intel-gpu/archive/refs/tags/intel-onevpl-${ONEVPL}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/vpl-gpu-rt tar -zx --strip-components=1 -C /tmp/onevpl
RUN \ RUN \
echo "**** compiling vpl-gpu-rt ****" && \ echo "**** compiling onevpl ****" && \
mkdir -p /tmp/vpl-gpu-rt/build && \ mkdir -p /tmp/onevpl/build && \
cd /tmp/vpl-gpu-rt/build && \ cd /tmp/onevpl/build && \
cmake \ cmake \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/local/lib \ -DCMAKE_INSTALL_LIBDIR=/usr/local/lib \
@ -520,6 +361,22 @@ RUN \
strip -d \ strip -d \
/usr/local/lib/libmfxhw64.so \ /usr/local/lib/libmfxhw64.so \
/usr/local/lib/mfx/libmfx_*.so /usr/local/lib/mfx/libmfx_*.so
RUN \
echo "**** grabbing libvdpau ****" && \
mkdir -p /tmp/libvdpau && \
git clone \
--branch ${LIBVDPAU} \
--depth 1 https://gitlab.freedesktop.org/vdpau/libvdpau.git \
/tmp/libvdpau
RUN \
echo "**** compiling libvdpau ****" && \
cd /tmp/libvdpau && \
meson setup \
--prefix=/usr --libdir=/usr/local/lib \
-Ddocumentation=false \
build && \
ninja -C build install && \
strip -d /usr/local/lib/libvdpau.so
RUN \ RUN \
echo "**** grabbing vmaf ****" && \ echo "**** grabbing vmaf ****" && \
mkdir -p /tmp/vmaf && \ mkdir -p /tmp/vmaf && \
@ -562,8 +419,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libopencore-amr*.so
RUN \ RUN \
echo "**** grabbing openjpeg ****" && \ echo "**** grabbing openjpeg ****" && \
mkdir -p /tmp/openjpeg && \ mkdir -p /tmp/openjpeg && \
@ -576,7 +432,7 @@ RUN \
rm -Rf \ rm -Rf \
thirdparty/libpng/* && \ thirdparty/libpng/* && \
curl -Lf \ curl -Lf \
https://download.sourceforge.net/libpng/libpng-${LIBPNG}.tar.gz | \ https://download.sourceforge.net/libpng/libpng-1.6.37.tar.gz | \
tar -zx --strip-components=1 -C thirdparty/libpng/ && \ tar -zx --strip-components=1 -C thirdparty/libpng/ && \
cmake \ cmake \
-DBUILD_STATIC_LIBS=0 \ -DBUILD_STATIC_LIBS=0 \
@ -587,7 +443,7 @@ RUN \
echo "**** grabbing opus ****" && \ echo "**** grabbing opus ****" && \
mkdir -p /tmp/opus && \ mkdir -p /tmp/opus && \
curl -Lf \ curl -Lf \
https://downloads.xiph.org/releases/opus/opus-${OPUS}.tar.gz | \ https://archive.mozilla.org/pub/opus/opus-${OPUS}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/opus tar -zx --strip-components=1 -C /tmp/opus
RUN \ RUN \
echo "**** compiling opus ****" && \ echo "**** compiling opus ****" && \
@ -597,80 +453,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libopus.so
RUN \
echo "**** grabbing rav1e ****" && \
mkdir -p /tmp/rav1e && \
git clone \
--branch v${RAV1E} \
https://github.com/xiph/rav1e.git \
/tmp/rav1e
RUN \
echo "**** compiling rav1e ****" && \
cd /tmp/rav1e && \
cargo cinstall --release && \
strip -d /usr/local/lib/x86_64-linux-gnu/librav1e.so
RUN \
echo "**** grabbing libdovi ****" && \
mkdir -p /tmp/libdovi && \
git clone \
--branch ${LIBDOVI} \
https://github.com/quietvoid/dovi_tool.git \
/tmp/libdovi
RUN \
echo "**** compiling libdovi ****" && \
cd /tmp/libdovi/dolby_vision && \
cargo cinstall --release && \
strip -d /usr/local/lib/x86_64-linux-gnu/libdovi.so
RUN \
echo "**** grabbing libplacebo ****" && \
mkdir -p /tmp/libplacebo && \
git clone \
--branch v${LIBPLACEBO} \
--recursive https://code.videolan.org/videolan/libplacebo \
/tmp/libplacebo
RUN \
echo "**** compiling libplacebo ****" && \
cd /tmp/libplacebo && \
meson build --buildtype release && \
ninja -C build install
RUN \
echo "**** grabbing rist ****" && \
mkdir -p /tmp/rist && \
git clone \
--branch v${RIST} \
--depth 1 https://code.videolan.org/rist/librist.git \
/tmp/rist
RUN \
echo "**** compiling rist ****" && \
cd /tmp/rist && \
mkdir -p \
rist_build && \
cd rist_build && \
meson setup \
--default-library=shared .. && \
ninja && \
ninja install && \
strip -d /usr/local/lib/librist.so
RUN \
echo "**** grabbing srt ****" && \
mkdir -p /tmp/srt && \
git clone \
--branch v${SRT} \
--depth 1 https://github.com/Haivision/srt.git \
/tmp/srt
RUN \
echo "**** compiling srt ****" && \
cd /tmp/srt && \
mkdir -p \
srt_build && \
cd srt_build && \
cmake \
-DBUILD_SHARED_LIBS:BOOL=on .. && \
make && \
make install && \
strip -d /usr/local/lib/libsrt.so
RUN \ RUN \
echo "**** grabbing SVT-AV1 ****" && \ echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \ mkdir -p /tmp/svt-av1 && \
@ -692,6 +475,16 @@ RUN \
RUN \ RUN \
echo "**** compiling theora ****" && \ echo "**** compiling theora ****" && \
cd /tmp/theora && \ cd /tmp/theora && \
cp \
/usr/share/automake-1.16/config.guess \
config.guess && \
cp \
/usr/share/automake-1.16/config.sub \
config.sub && \
curl -fL \
'https://gitlab.xiph.org/xiph/theora/-/commit/7288b539c52e99168488dc3a343845c9365617c8.diff' \
> png.patch && \
patch ./examples/png2theora.c < png.patch && \
./configure \ ./configure \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
@ -747,49 +540,6 @@ RUN \
--enable-vp9-highbitdepth && \ --enable-vp9-highbitdepth && \
make && \ make && \
make install make install
RUN \
echo "**** grabbing vulkan headers ****" && \
mkdir -p /tmp/vulkan-headers && \
git clone \
--branch ${VULKANSDK} \
--depth 1 https://github.com/KhronosGroup/Vulkan-Headers.git \
/tmp/vulkan-headers
RUN \
echo "**** compiling vulkan headers ****" && \
cd /tmp/vulkan-headers && \
cmake -S . -B build/ && \
cmake --install build --prefix /usr/local
RUN \
echo "**** grabbing vulkan loader ****" && \
mkdir -p /tmp/vulkan-loader && \
git clone \
--branch ${VULKANSDK} \
--depth 1 https://github.com/KhronosGroup/Vulkan-Loader.git \
/tmp/vulkan-loader
RUN \
echo "**** compiling vulkan loader ****" && \
cd /tmp/vulkan-loader && \
mkdir -p build && \
cd build && \
cmake \
-D CMAKE_BUILD_TYPE=Release \
-D VULKAN_HEADERS_INSTALL_DIR=/usr/local/lib/x86_64-linux-gnu \
-D CMAKE_INSTALL_PREFIX=/usr/local \
.. && \
make && \
make install
RUN \
echo "**** grabbing vvenc ****" && \
mkdir -p /tmp/vvenc && \
git clone \
--branch v${VVENC} \
--depth 1 https://github.com/fraunhoferhhi/vvenc.git \
/tmp/vvenc
RUN \
echo "**** compiling vvenc ****" && \
cd /tmp/vvenc && \
make install install-prefix=/usr/local && \
strip -d /usr/local/lib/libvvenc.so
RUN \ RUN \
echo "**** grabbing webp ****" && \ echo "**** grabbing webp ****" && \
mkdir -p /tmp/webp && \ mkdir -p /tmp/webp && \
@ -801,8 +551,7 @@ RUN \
cd /tmp/webp && \ cd /tmp/webp && \
./configure && \ ./configure && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libweb*.so
RUN \ RUN \
echo "**** grabbing x264 ****" && \ echo "**** grabbing x264 ****" && \
mkdir -p /tmp/x264 && \ mkdir -p /tmp/x264 && \
@ -842,38 +591,6 @@ RUN \
./configure && \ ./configure && \
make && \ make && \
make install make install
RUN \
echo "**** grabbing zimg ****" && \
mkdir -p /tmp/zimg && \
git clone \
--branch release-${ZIMG} --depth 1 \
https://github.com/sekrit-twc/zimg.git \
/tmp/zimg
RUN \
echo "**** compiling zimg ****" && \
cd /tmp/zimg && \
./autogen.sh && \
./configure \
--disable-static \
--enable-shared && \
make && \
make install
RUN \
echo "**** grabbing zmq ****" && \
mkdir -p /tmp/zmq && \
git clone \
--branch ${ZMQ} --depth 1 \
https://github.com/zeromq/libzmq.git \
/tmp/zmq
RUN \
echo "**** compiling zmq ****" && \
cd /tmp/zmq && \
./autogen.sh && \
./configure \
--disable-static \
--enable-shared && \
make && \
make install-strip
# main ffmpeg build # main ffmpeg build
RUN \ RUN \
@ -889,7 +606,6 @@ RUN \
curl -Lf \ curl -Lf \
https://ffmpeg.org/releases/ffmpeg-${FFMPEG}.tar.bz2 | \ https://ffmpeg.org/releases/ffmpeg-${FFMPEG}.tar.bz2 | \
tar -jx --strip-components=1 -C /tmp/ffmpeg tar -jx --strip-components=1 -C /tmp/ffmpeg
RUN \ RUN \
echo "**** compiling ffmpeg ****" && \ echo "**** compiling ffmpeg ****" && \
cd /tmp/ffmpeg && \ cd /tmp/ffmpeg && \
@ -897,31 +613,19 @@ RUN \
--disable-debug \ --disable-debug \
--disable-doc \ --disable-doc \
--disable-ffplay \ --disable-ffplay \
--enable-alsa \
--enable-cuda-llvm \
--enable-cuvid \ --enable-cuvid \
--enable-ffprobe \ --enable-ffprobe \
--enable-gpl \ --enable-gpl \
--enable-libaom \ --enable-libaom \
--enable-libass \ --enable-libass \
--enable-libdav1d \
--enable-libfdk_aac \ --enable-libfdk_aac \
--enable-libfontconfig \
--enable-libfreetype \ --enable-libfreetype \
--enable-libfribidi \
--enable-libharfbuzz \
--enable-libkvazaar \ --enable-libkvazaar \
--enable-liblc3 \
--enable-libmp3lame \ --enable-libmp3lame \
--enable-libopencore-amrnb \ --enable-libopencore-amrnb \
--enable-libopencore-amrwb \ --enable-libopencore-amrwb \
--enable-libopenjpeg \ --enable-libopenjpeg \
--enable-libopus \ --enable-libopus \
--enable-libplacebo \
--enable-librav1e \
--enable-librist \
--enable-libshaderc \
--enable-libsrt \
--enable-libsvtav1 \ --enable-libsvtav1 \
--enable-libtheora \ --enable-libtheora \
--enable-libv4l2 \ --enable-libv4l2 \
@ -930,40 +634,32 @@ RUN \
--enable-libvorbis \ --enable-libvorbis \
--enable-libvpl \ --enable-libvpl \
--enable-libvpx \ --enable-libvpx \
--enable-libvvenc \
--enable-libwebp \ --enable-libwebp \
--enable-libx264 \ --enable-libx264 \
--enable-libx265 \ --enable-libx265 \
--enable-libxml2 \ --enable-libxml2 \
--enable-libxvid \ --enable-libxvid \
--enable-libzimg \
--enable-libzmq \
--enable-nonfree \ --enable-nonfree \
--enable-nvdec \ --enable-nvdec \
--enable-nvenc \ --enable-nvenc \
--enable-opencl \ --enable-opencl \
--enable-openssl \ --enable-openssl \
--enable-small \
--enable-stripping \ --enable-stripping \
--enable-vaapi \ --enable-vaapi \
--enable-vdpau \ --enable-vdpau \
--enable-version3 \ --enable-version3 && \
--enable-vulkan \
&& \
make make
RUN \ RUN \
echo "**** arrange files ****" && \ echo "**** arrange files ****" && \
/usr/local/lib/rustlib/uninstall.sh && \
ldconfig && \ ldconfig && \
mkdir -p \ mkdir -p \
/buildout/usr/local/bin \ /buildout/usr/local/bin \
/buildout/usr/local/etc/fonts \
/buildout/usr/local/lib/libmfx-gen \ /buildout/usr/local/lib/libmfx-gen \
/buildout/usr/local/lib/mfx \ /buildout/usr/local/lib/mfx \
/buildout/usr/local/lib/vpl \
/buildout/usr/local/lib/x86_64-linux-gnu/dri \ /buildout/usr/local/lib/x86_64-linux-gnu/dri \
/buildout/usr/local/share/vulkan \
/buildout/usr/share/fonts \
/buildout/usr/share/libdrm \
/buildout/etc/OpenCL/vendors && \ /buildout/etc/OpenCL/vendors && \
cp \ cp \
/tmp/ffmpeg/ffmpeg \ /tmp/ffmpeg/ffmpeg \
@ -971,9 +667,6 @@ RUN \
cp \ cp \
/tmp/ffmpeg/ffprobe \ /tmp/ffmpeg/ffprobe \
/buildout/usr/local/bin && \ /buildout/usr/local/bin && \
cp -a \
/usr/local/etc/fonts/* \
/buildout/usr/local/etc/fonts/ && \
cp -a \ cp -a \
/usr/local/lib/lib*so* \ /usr/local/lib/lib*so* \
/buildout/usr/local/lib/ && \ /buildout/usr/local/lib/ && \
@ -983,30 +676,21 @@ RUN \
cp -a \ cp -a \
/usr/local/lib/mfx/*.so \ /usr/local/lib/mfx/*.so \
/buildout/usr/local/lib/mfx/ && \ /buildout/usr/local/lib/mfx/ && \
cp -a \
/usr/local/lib/vpl/*.so \
/buildout/usr/local/lib/vpl/ && \
cp -a \ cp -a \
/usr/local/lib/x86_64-linux-gnu/lib*so* \ /usr/local/lib/x86_64-linux-gnu/lib*so* \
/buildout/usr/local/lib/x86_64-linux-gnu/ && \ /buildout/usr/local/lib/x86_64-linux-gnu/ && \
cp -a \ cp -a \
/usr/local/lib/x86_64-linux-gnu/dri/*.so \ /usr/lib/x86_64-linux-gnu/dri/*.so \
/buildout/usr/local/lib/x86_64-linux-gnu/dri/ && \ /buildout/usr/local/lib/x86_64-linux-gnu/dri/ && \
cp -a \
/usr/lib/x86_64-linux-gnu/dri/i965* \
/buildout/usr/local/lib/x86_64-linux-gnu/dri/ && \
cp -a \
/usr/share/libdrm/amdgpu.ids \
/buildout/usr/share/libdrm/ && \
cp -a \
/usr/share/fonts/* \
/buildout/usr/share/fonts/ && \
cp -a \
/usr/local/share/vulkan/* \
/buildout/usr/local/share/vulkan/ && \
echo \ echo \
'libnvidia-opencl.so.1' > \ 'libnvidia-opencl.so.1' > \
/buildout/etc/OpenCL/vendors/nvidia.icd /buildout/etc/OpenCL/vendors/nvidia.icd
# runtime stage # runtime stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
# Add files from binstage # Add files from binstage
COPY --from=buildstage /buildout/ / COPY --from=buildstage /buildout/ /
@ -1030,40 +714,27 @@ RUN \
echo "**** install runtime ****" && \ echo "**** install runtime ****" && \
apt-get update && \ apt-get update && \
apt-get install -y \ apt-get install -y \
libasound2t64 \
libedit2 \
libelf1 \
libexpat1 \ libexpat1 \
libglib2.0-0 \ libglib2.0-0 \
libgomp1 \ libgomp1 \
libllvm18 \ libharfbuzz0b \
libpciaccess0 \ libpciaccess0 \
libv4l-0 \ libv4l-0 \
libwayland-client0 \ libwayland-client0 \
libx11-6 \ libx11-6 \
libx11-xcb1 \ libx11-xcb1 \
libxcb-dri2-0 \
libxcb-dri3-0 \ libxcb-dri3-0 \
libxcb-present0 \
libxcb-randr0 \
libxcb-shape0 \ libxcb-shape0 \
libxcb-shm0 \
libxcb-sync1 \
libxcb-xfixes0 \ libxcb-xfixes0 \
libxcb1 \ libxcb1 \
libxext6 \ libxext6 \
libxfixes3 \ libxfixes3 \
libxshmfence1 \
libxml2 \ libxml2 \
ocl-icd-libopencl1 && \ ocl-icd-libopencl1 && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** clean up ****" && \ echo "**** clean up ****" && \
rm -rf \ rm -rf \
/var/lib/apt/lists/* \ /var/lib/apt/lists/* \
/var/tmp/* && \ /var/tmp/*
echo "**** quick test ffmpeg ****" && \
ldd /usr/local/bin/ffmpeg && \
/usr/local/bin/ffmpeg -version
COPY /root / COPY /root /

View File

@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
# build stage # build stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble AS buildstage FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy as buildstage
# set version label # set version label
ARG FFMPEG_VERSION ARG FFMPEG_VERSION
@ -9,48 +9,35 @@ ARG FFMPEG_VERSION
# common env # common env
ENV \ ENV \
DEBIAN_FRONTEND="noninteractive" \ DEBIAN_FRONTEND="noninteractive" \
MAKEFLAGS="-j4" \ MAKEFLAGS="-j4"
CMAKE_POLICY_VERSION_MINIMUM="3.5" \
PATH="/root/.cargo/bin:${PATH}"
# versions # versions
ENV \ ENV \
AOM=v3.13.1 \ AOM=v3.7.0 \
FDKAAC=2.0.3 \ FDKAAC=2.0.2 \
FFMPEG_HARD=8.0.1 \ FFMPEG_HARD=6.0 \
FONTCONFIG=2.16.0 \ FREETYPE=2.13.2 \
FREETYPE=2.14.1 \ FRIBIDI=1.0.13 \
FRIBIDI=1.0.16 \ KVAZAAR=2.2.0 \
HARFBUZZ=12.3.0 \
KVAZAAR=2.3.2 \
LAME=3.100 \ LAME=3.100 \
LIBASS=0.17.4 \ LIBASS=0.17.1 \
LIBDAV1D=1.5.3 \ LIBDRM=2.4.116 \
LIBDRM=2.4.131 \ LIBVA=2.19.0 \
LIBLC3=1.1.3 \
LIBPNG=1.6.53 \
LIBVA=2.23.0 \
LIBVDPAU=1.5 \ LIBVDPAU=1.5 \
LIBVIDSTAB=1.1.1 \ LIBVIDSTAB=1.1.1 \
LIBVMAF=3.0.0 \ NVCODEC=n12.0.16.0 \
NVCODEC=n13.0.19.0 \ OGG=1.3.5 \
OGG=1.3.6 \
OPENCOREAMR=0.1.6 \ OPENCOREAMR=0.1.6 \
OPENJPEG=2.5.4 \ OPENJPEG=2.5.0 \
OPUS=1.6 \ OPUS=1.3.1 \
RAV1E=0.8.1 \ SVTAV1=1.7.0 \
RIST=0.2.11 \ THEORA=1.1.1 \
SRT=1.5.4 \
SVTAV1=3.1.2 \
THEORA=1.2.0 \
VORBIS=1.3.7 \ VORBIS=1.3.7 \
VPX=1.15.2 \ VPX=1.13.1 \
VVENC=1.13.1 \ WEBP=1.3.2 \
WEBP=1.6.0 \ X265=master \
X265=4.1 \ XVID=1.3.7
XVID=1.3.7 \ # x265 aarch64 build fixes not in a release yet https://bitbucket.org/multicoreware/x265_git/issues/604/linux-arm-aarch64-build-failing-for-high
ZIMG=3.0.6 \
ZMQ=v4.3.5
RUN \ RUN \
echo "**** install build packages ****" && \ echo "**** install build packages ****" && \
@ -58,20 +45,16 @@ RUN \
apt-get install -y \ apt-get install -y \
autoconf \ autoconf \
automake \ automake \
build-essential \
bzip2 \ bzip2 \
cmake \ cmake \
clang \
diffutils \ diffutils \
g++ \ g++ \
gcc \ gcc \
git \ git \
gperf \ gperf \
libasound2-dev \
libcairo2-dev \
libexpat1-dev \ libexpat1-dev \
libfontconfig1-dev \
libgcc-10-dev \ libgcc-10-dev \
libglib2.0-dev \
libgomp1 \ libgomp1 \
libharfbuzz-dev \ libharfbuzz-dev \
libpciaccess-dev \ libpciaccess-dev \
@ -81,29 +64,22 @@ RUN \
libx11-dev \ libx11-dev \
libxext-dev \ libxext-dev \
libxml2-dev \ libxml2-dev \
llvm-18-dev \
make \ make \
nasm \ nasm \
perl \ perl \
pkg-config \ pkg-config \
python3-venv \ python3-venv \
x11proto-xext-dev \ x11proto-xext-dev \
xserver-xorg-dev \
xxd \ xxd \
yasm \ yasm \
zlib1g-dev && \ zlib1g-dev && \
mkdir -p /tmp/rust && \
RUST_VERSION=$(curl -fsX GET https://api.github.com/repos/rust-lang/rust/releases/latest | jq -r '.tag_name') && \
curl -fo /tmp/rust.tar.gz -L "https://static.rust-lang.org/dist/rust-${RUST_VERSION}-aarch64-unknown-linux-gnu.tar.gz" && \
tar xf /tmp/rust.tar.gz -C /tmp/rust --strip-components=1 && \
cd /tmp/rust && \
./install.sh && \
cargo install cargo-c --locked && \
python3 -m venv /lsiopy && \ python3 -m venv /lsiopy && \
pip install -U --no-cache-dir \ pip install -U --no-cache-dir \
pip \ pip \
setuptools \ setuptools \
wheel && \ wheel && \
pip install --no-cache-dir cmake==3.31.6 meson ninja pip install --no-cache-dir cmake
# compile 3rd party libs # compile 3rd party libs
RUN \ RUN \
@ -140,18 +116,6 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \
strip -d /usr/local/lib/libfdk-aac.so
RUN \
echo "**** grabbing ffnvcodec ****" && \
mkdir -p /tmp/ffnvcodec && \
git clone \
--branch ${NVCODEC} \
--depth 1 https://github.com/FFmpeg/nv-codec-headers.git \
/tmp/ffnvcodec
RUN \
echo "**** compiling ffnvcodec ****" && \
cd /tmp/ffnvcodec && \
make install make install
RUN \ RUN \
echo "**** grabbing freetype ****" && \ echo "**** grabbing freetype ****" && \
@ -166,23 +130,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libfreetype.so
RUN \
echo "**** grabbing fontconfig ****" && \
mkdir -p /tmp/fontconfig && \
curl -Lf \
https://www.freedesktop.org/software/fontconfig/release/fontconfig-${FONTCONFIG}.tar.xz | \
tar -xJ --strip-components=1 -C /tmp/fontconfig
RUN \
echo "**** compiling fontconfig ****" && \
cd /tmp/fontconfig && \
./configure \
--disable-static \
--enable-shared && \
make && \
make install && \
strip -d /usr/local/lib/libfontconfig.so
RUN \ RUN \
echo "**** grabbing fribidi ****" && \ echo "**** grabbing fribidi ****" && \
mkdir -p /tmp/fribidi && \ mkdir -p /tmp/fribidi && \
@ -197,20 +145,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make -j 1 && \ make -j 1 && \
make install && \ make install
strip -d /usr/local/lib/libfribidi.so
RUN \
echo "**** grabbing harfbuzz ****" && \
mkdir -p /tmp/harfbuzz && \
curl -Lf \
https://github.com/harfbuzz/harfbuzz/archive/${HARFBUZZ}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/harfbuzz
RUN \
echo "**** compiling harfbuzz ****" && \
cd /tmp/harfbuzz && \
meson build && \
ninja -C build install && \
strip -d /usr/local/lib/aarch64-linux-gnu/libharfbuzz*.so
RUN \ RUN \
echo "**** grabbing kvazaar ****" && \ echo "**** grabbing kvazaar ****" && \
mkdir -p /tmp/kvazaar && \ mkdir -p /tmp/kvazaar && \
@ -225,8 +160,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libkvazaar.so
RUN \ RUN \
echo "**** grabbing lame ****" && \ echo "**** grabbing lame ****" && \
mkdir -p /tmp/lame && \ mkdir -p /tmp/lame && \
@ -263,65 +197,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libass.so
RUN \
echo "**** grabbing libdav1d ****" && \
mkdir -p /tmp/libdav1d && \
git clone \
--branch ${LIBDAV1D} \
https://code.videolan.org/videolan/dav1d \
/tmp/libdav1d
RUN \
echo "**** compiling libdav1d ****" && \
mkdir -p /tmp/libdav1d/build && \
cd /tmp/libdav1d/build && \
meson setup .. && \
ninja install
RUN \
echo "**** grabbing libdrm ****" && \
mkdir -p /tmp/libdrm && \
curl -Lf \
https://dri.freedesktop.org/libdrm/libdrm-${LIBDRM}.tar.xz | \
tar -xJ --strip-components=1 -C /tmp/libdrm
RUN \
echo "**** compiling libdrm ****" && \
cd /tmp/libdrm && \
meson setup \
--prefix=/usr --libdir=/usr/local/lib/aarch64-linux-gnu \
-Dvalgrind=disabled \
. build && \
ninja -C build && \
ninja -C build install && \
strip -d /usr/local/lib/aarch64-linux-gnu/libdrm*.so
RUN \
echo "**** grabbing liblc3 ****" && \
mkdir -p /tmp/liblc3 && \
git clone \
--branch v${LIBLC3} \
--depth 1 \
https://github.com/google/liblc3.git \
/tmp/liblc3
RUN \
echo "**** compiling liblc3 ****" && \
cd /tmp/liblc3 && \
meson setup build && \
meson install -C build --strip
RUN \
echo "**** grabbing vmaf ****" && \
mkdir -p /tmp/vmaf && \
curl -Lf \
https://github.com/Netflix/vmaf/archive/refs/tags/v${LIBVMAF}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/vmaf
RUN \
echo "**** compiling libvmaf ****" && \
cd /tmp/vmaf/libvmaf && \
meson setup \
--prefix=/usr --libdir=/usr/local/lib \
--buildtype release \
build && \
ninja -vC build && \
ninja -vC build install
RUN \ RUN \
echo "**** grabbing ogg ****" && \ echo "**** grabbing ogg ****" && \
mkdir -p /tmp/ogg && \ mkdir -p /tmp/ogg && \
@ -349,8 +225,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libopencore-amr*.so
RUN \ RUN \
echo "**** grabbing openjpeg ****" && \ echo "**** grabbing openjpeg ****" && \
mkdir -p /tmp/openjpeg && \ mkdir -p /tmp/openjpeg && \
@ -363,7 +238,7 @@ RUN \
rm -Rf \ rm -Rf \
thirdparty/libpng/* && \ thirdparty/libpng/* && \
curl -Lf \ curl -Lf \
https://download.sourceforge.net/libpng/libpng-${LIBPNG}.tar.gz | \ https://download.sourceforge.net/libpng/libpng-1.6.37.tar.gz | \
tar -zx --strip-components=1 -C thirdparty/libpng/ && \ tar -zx --strip-components=1 -C thirdparty/libpng/ && \
cmake \ cmake \
-DBUILD_STATIC_LIBS=0 \ -DBUILD_STATIC_LIBS=0 \
@ -374,7 +249,7 @@ RUN \
echo "**** grabbing opus ****" && \ echo "**** grabbing opus ****" && \
mkdir -p /tmp/opus && \ mkdir -p /tmp/opus && \
curl -Lf \ curl -Lf \
https://downloads.xiph.org/releases/opus/opus-${OPUS}.tar.gz | \ https://archive.mozilla.org/pub/opus/opus-${OPUS}.tar.gz | \
tar -zx --strip-components=1 -C /tmp/opus tar -zx --strip-components=1 -C /tmp/opus
RUN \ RUN \
echo "**** compiling opus ****" && \ echo "**** compiling opus ****" && \
@ -384,56 +259,7 @@ RUN \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libopus.so
RUN \
echo "**** grabbing rav1e ****" && \
mkdir -p /tmp/rav1e && \
git clone \
--branch v${RAV1E} \
https://github.com/xiph/rav1e.git \
/tmp/rav1e
RUN \
echo "**** compiling rav1e ****" && \
cd /tmp/rav1e && \
cargo cinstall --release && \
strip -d /usr/local/lib/aarch64-linux-gnu/librav1e.so
RUN \
echo "**** grabbing rist ****" && \
mkdir -p /tmp/rist && \
git clone \
--branch v${RIST} \
--depth 1 https://code.videolan.org/rist/librist.git \
/tmp/rist
RUN \
echo "**** compiling rist ****" && \
cd /tmp/rist && \
mkdir -p \
rist_build && \
cd rist_build && \
meson setup \
--default-library=shared .. && \
ninja && \
ninja install && \
strip -d /usr/local/lib/librist.so
RUN \
echo "**** grabbing srt ****" && \
mkdir -p /tmp/srt && \
git clone \
--branch v${SRT} \
--depth 1 https://github.com/Haivision/srt.git \
/tmp/srt
RUN \
echo "**** compiling srt ****" && \
cd /tmp/srt && \
mkdir -p \
srt_build && \
cd srt_build && \
cmake \
-DBUILD_SHARED_LIBS:BOOL=on .. && \
make && \
make install && \
strip -d /usr/local/lib/libsrt.so
RUN \ RUN \
echo "**** grabbing SVT-AV1 ****" && \ echo "**** grabbing SVT-AV1 ****" && \
mkdir -p /tmp/svt-av1 && \ mkdir -p /tmp/svt-av1 && \
@ -455,6 +281,16 @@ RUN \
RUN \ RUN \
echo "**** compiling theora ****" && \ echo "**** compiling theora ****" && \
cd /tmp/theora && \ cd /tmp/theora && \
cp \
/usr/share/automake-1.16/config.guess \
config.guess && \
cp \
/usr/share/automake-1.16/config.sub \
config.sub && \
curl -fL \
'https://gitlab.xiph.org/xiph/theora/-/commit/7288b539c52e99168488dc3a343845c9365617c8.diff' \
> png.patch && \
patch ./examples/png2theora.c < png.patch && \
./configure \ ./configure \
--disable-static \ --disable-static \
--enable-shared && \ --enable-shared && \
@ -511,18 +347,6 @@ RUN \
--enable-vp9-highbitdepth && \ --enable-vp9-highbitdepth && \
make && \ make && \
make install make install
RUN \
echo "**** grabbing vvenc ****" && \
mkdir -p /tmp/vvenc && \
git clone \
--branch v${VVENC} \
--depth 1 https://github.com/fraunhoferhhi/vvenc.git \
/tmp/vvenc
RUN \
echo "**** compiling vvenc ****" && \
cd /tmp/vvenc && \
make install install-prefix=/usr/local && \
strip -d /usr/local/lib/libvvenc.so
RUN \ RUN \
echo "**** grabbing webp ****" && \ echo "**** grabbing webp ****" && \
mkdir -p /tmp/webp && \ mkdir -p /tmp/webp && \
@ -534,8 +358,7 @@ RUN \
cd /tmp/webp && \ cd /tmp/webp && \
./configure && \ ./configure && \
make && \ make && \
make install && \ make install
strip -d /usr/local/lib/libweb*.so
RUN \ RUN \
echo "**** grabbing x264 ****" && \ echo "**** grabbing x264 ****" && \
mkdir -p /tmp/x264 && \ mkdir -p /tmp/x264 && \
@ -555,9 +378,10 @@ RUN \
RUN \ RUN \
echo "**** grabbing x265 ****" && \ echo "**** grabbing x265 ****" && \
mkdir -p /tmp/x265 && \ mkdir -p /tmp/x265 && \
curl -Lf \ git clone \
https://bitbucket.org/multicoreware/x265_git/downloads/x265_${X265}.tar.gz | \ --branch ${X265} \
tar -zx --strip-components=1 -C /tmp/x265 https://bitbucket.org/multicoreware/x265_git.git \
/tmp/x265
RUN \ RUN \
echo "**** compiling x265 ****" && \ echo "**** compiling x265 ****" && \
cd /tmp/x265/build/linux && \ cd /tmp/x265/build/linux && \
@ -576,38 +400,6 @@ RUN \
./configure && \ ./configure && \
make && \ make && \
make install make install
RUN \
echo "**** grabbing zimg ****" && \
mkdir -p /tmp/zimg && \
git clone \
--branch release-${ZIMG} --depth 1 \
https://github.com/sekrit-twc/zimg.git \
/tmp/zimg
RUN \
echo "**** compiling zimg ****" && \
cd /tmp/zimg && \
./autogen.sh && \
./configure \
--disable-static \
--enable-shared && \
make && \
make install
RUN \
echo "**** grabbing zmq ****" && \
mkdir -p /tmp/zmq && \
git clone \
--branch ${ZMQ} --depth 1 \
https://github.com/zeromq/libzmq.git \
/tmp/zmq
RUN \
echo "**** compiling zmq ****" && \
cd /tmp/zmq && \
./autogen.sh && \
./configure \
--disable-static \
--enable-shared && \
make && \
make install-strip
# main ffmpeg build # main ffmpeg build
RUN \ RUN \
@ -623,7 +415,6 @@ RUN \
curl -Lf \ curl -Lf \
https://ffmpeg.org/releases/ffmpeg-${FFMPEG}.tar.bz2 | \ https://ffmpeg.org/releases/ffmpeg-${FFMPEG}.tar.bz2 | \
tar -jx --strip-components=1 -C /tmp/ffmpeg tar -jx --strip-components=1 -C /tmp/ffmpeg
RUN \ RUN \
echo "**** compiling ffmpeg ****" && \ echo "**** compiling ffmpeg ****" && \
cd /tmp/ffmpeg && \ cd /tmp/ffmpeg && \
@ -631,83 +422,54 @@ RUN \
--disable-debug \ --disable-debug \
--disable-doc \ --disable-doc \
--disable-ffplay \ --disable-ffplay \
--enable-alsa \
--enable-cuda-llvm \
--enable-cuvid \
--enable-ffprobe \ --enable-ffprobe \
--enable-gpl \ --enable-gpl \
--enable-libaom \ --enable-libaom \
--enable-libass \ --enable-libass \
--enable-libdav1d \
--enable-libfdk_aac \ --enable-libfdk_aac \
--enable-libfontconfig \
--enable-libfreetype \ --enable-libfreetype \
--enable-libfribidi \
--enable-libharfbuzz \
--enable-libkvazaar \ --enable-libkvazaar \
--enable-liblc3 \
--enable-libmp3lame \ --enable-libmp3lame \
--enable-libopencore-amrnb \ --enable-libopencore-amrnb \
--enable-libopencore-amrwb \ --enable-libopencore-amrwb \
--enable-libopenjpeg \ --enable-libopenjpeg \
--enable-libopus \ --enable-libopus \
--enable-librav1e \
--enable-librist \
--enable-libsrt \
--enable-libsvtav1 \ --enable-libsvtav1 \
--enable-libtheora \ --enable-libtheora \
--enable-libv4l2 \ --enable-libv4l2 \
--enable-libvidstab \ --enable-libvidstab \
--enable-libvmaf \
--enable-libvorbis \ --enable-libvorbis \
--enable-libvpx \ --enable-libvpx \
--enable-libvvenc \ --enable-libxml2 \
--enable-libwebp \
--enable-libx264 \ --enable-libx264 \
--enable-libx265 \ --enable-libx265 \
--enable-libxml2 \
--enable-libxvid \ --enable-libxvid \
--enable-libzimg \ --enable-libwebp \
--enable-libzmq \
--enable-nonfree \ --enable-nonfree \
--enable-nvdec \
--enable-nvenc \
--enable-openssl \ --enable-openssl \
--enable-small \
--enable-stripping \ --enable-stripping \
--enable-version3 \ --enable-version3 && \
&& \
make make
RUN \ RUN \
echo "**** arrange files ****" && \ echo "**** arrange files ****" && \
/usr/local/lib/rustlib/uninstall.sh && \
ldconfig && \ ldconfig && \
mkdir -p \ mkdir -p \
/buildout/usr/local/bin \ /buildout/usr/local/bin \
/buildout/usr/local/etc/fonts \ /buildout/usr/local/lib && \
/buildout/usr/local/lib/aarch64-linux-gnu \
/buildout/usr/share/fonts && \
cp \ cp \
/tmp/ffmpeg/ffmpeg \ /tmp/ffmpeg/ffmpeg \
/buildout/usr/local/bin && \ /buildout/usr/local/bin && \
cp \ cp \
/tmp/ffmpeg/ffprobe \ /tmp/ffmpeg/ffprobe \
/buildout/usr/local/bin && \ /buildout/usr/local/bin && \
cp -a \
/usr/local/etc/fonts/* \
/buildout/usr/local/etc/fonts/ && \
cp -a \ cp -a \
/usr/local/lib/lib*so* \ /usr/local/lib/lib*so* \
/buildout/usr/local/lib/ && \ /buildout/usr/local/lib/
cp -a \
/usr/local/lib/aarch64-linux-gnu/lib*so* \
/buildout/usr/local/lib/aarch64-linux-gnu/ && \
cp -a \
/usr/share/fonts/* \
/buildout/usr/share/fonts/
# runtime stage # runtime stage
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
# Add files from binstage # Add files from binstage
COPY --from=buildstage /buildout/ / COPY --from=buildstage /buildout/ /
@ -720,34 +482,24 @@ LABEL maintainer="thelamer"
ARG DEBIAN_FRONTEND="noninteractive" ARG DEBIAN_FRONTEND="noninteractive"
ENV \
NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" \
NVIDIA_VISIBLE_DEVICES="all"
RUN \ RUN \
echo "**** install runtime ****" && \ echo "**** install runtime ****" && \
apt-get update && \ apt-get update && \
apt-get install -y \ apt-get install -y \
libasound2t64 \
libexpat1 \ libexpat1 \
libfontconfig1 \
libglib2.0-0 \ libglib2.0-0 \
libgomp1 \ libgomp1 \
libllvm18 \ libharfbuzz0b \
libv4l-0 \ libv4l-0 \
libx11-6 \ libx11-6 \
libxcb1 \ libxcb1 \
libxcb-shm0 \
libxext6 \ libxext6 \
libxml2 \ libxml2 && \
ocl-icd-libopencl1 && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** clean up ****" && \ echo "**** clean up ****" && \
rm -rf \ rm -rf \
/var/lib/apt/lists/* \ /var/lib/apt/lists/* \
/var/tmp/* && \ /var/tmp/*
echo "**** quick test ffmpeg ****" && \
ldd /usr/local/bin/ffmpeg && \
/usr/local/bin/ffmpeg -version
COPY /root / COPY /root /

605
Jenkinsfile vendored
View File

@ -16,9 +16,6 @@ pipeline {
GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab')
GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0')
GITLAB_NAMESPACE=credentials('gitlab-namespace-id') GITLAB_NAMESPACE=credentials('gitlab-namespace-id')
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
QUAYIO_API_TOKEN=credentials('quayio-repo-api-token')
GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f')
BUILD_VERSION_ARG = 'FFMPEG_VERSION' BUILD_VERSION_ARG = 'FFMPEG_VERSION'
LS_USER = 'linuxserver' LS_USER = 'linuxserver'
LS_REPO = 'docker-ffmpeg' LS_REPO = 'docker-ffmpeg'
@ -31,41 +28,15 @@ pipeline {
CI='false' CI='false'
} }
stages { stages {
stage("Set git config"){
steps{
sh '''#!/bin/bash
cat ${GIT_SIGNING_KEY} > /config/.ssh/id_sign
chmod 600 /config/.ssh/id_sign
ssh-keygen -y -f /config/.ssh/id_sign > /config/.ssh/id_sign.pub
echo "Using $(ssh-keygen -lf /config/.ssh/id_sign) to sign commits"
git config --global gpg.format ssh
git config --global user.signingkey /config/.ssh/id_sign
git config --global commit.gpgsign true
'''
}
}
// Setup all the basic environment variables needed for the build // Setup all the basic environment variables needed for the build
stage("Set ENV Variables base"){ stage("Set ENV Variables base"){
steps{ steps{
echo "Running on node: ${NODE_NAME}"
sh '''#! /bin/bash sh '''#! /bin/bash
echo "Pruning builder" containers=$(docker ps -aq)
docker builder prune -f --builder container || :
containers=$(docker ps -q)
if [[ -n "${containers}" ]]; then if [[ -n "${containers}" ]]; then
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') docker stop ${containers}
for container in ${containers}; do
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
echo "skipping buildx container in docker stop"
else
echo "Stopping container ${container}"
docker stop ${container}
fi fi
done docker system prune -af --volumes || : '''
fi
docker system prune -f --volumes || :
docker image prune -af || :
'''
script{ script{
env.EXIT_STATUS = '' env.EXIT_STATUS = ''
env.LS_RELEASE = sh( env.LS_RELEASE = sh(
@ -80,20 +51,11 @@ pipeline {
env.COMMIT_SHA = sh( env.COMMIT_SHA = sh(
script: '''git rev-parse HEAD''', script: '''git rev-parse HEAD''',
returnStdout: true).trim() returnStdout: true).trim()
env.GH_DEFAULT_BRANCH = sh(
script: '''git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||' ''',
returnStdout: true).trim()
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
env.PULL_REQUEST = env.CHANGE_ID env.PULL_REQUEST = env.CHANGE_ID
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml' env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
if ( env.SYFT_IMAGE_TAG == null ) {
env.SYFT_IMAGE_TAG = 'latest'
} }
}
echo "Using syft image tag ${SYFT_IMAGE_TAG}"
sh '''#! /bin/bash
echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" '''
script{ script{
env.LS_RELEASE_NUMBER = sh( env.LS_RELEASE_NUMBER = sh(
script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''',
@ -140,7 +102,7 @@ pipeline {
steps{ steps{
script{ script{
env.EXT_RELEASE = sh( env.EXT_RELEASE = sh(
script: ''' echo 8.0.1-cli ''', script: ''' echo 6.0-cli ''',
returnStdout: true).trim() returnStdout: true).trim()
env.RELEASE_LINK = 'custom_command' env.RELEASE_LINK = 'custom_command'
} }
@ -169,7 +131,7 @@ pipeline {
} }
if (env.SEMVER != null) { if (env.SEMVER != null) {
if (BRANCH_NAME != "${env.GH_DEFAULT_BRANCH}") { if (BRANCH_NAME != "master" && BRANCH_NAME != "main") {
env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}" env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}"
} }
println("SEMVER: ${env.SEMVER}") println("SEMVER: ${env.SEMVER}")
@ -200,8 +162,6 @@ pipeline {
env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER
env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER
env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN
env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache'
env.CITEST_IMAGETAG = 'latest'
} }
} }
} }
@ -226,8 +186,6 @@ pipeline {
env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/'
env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache'
env.CITEST_IMAGETAG = 'develop'
} }
} }
} }
@ -252,8 +210,6 @@ pipeline {
env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/'
env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache'
env.CITEST_IMAGETAG = 'develop'
} }
} }
} }
@ -276,11 +232,9 @@ pipeline {
-v ${WORKSPACE}:/mnt \ -v ${WORKSPACE}:/mnt \
-e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \
-e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \
ghcr.io/linuxserver/baseimage-alpine:3.23 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\
apk add --no-cache python3 && \ apk add --no-cache py3-pip && \
python3 -m venv /lsiopy && \ pip install s3cmd && \
pip install --no-cache-dir -U pip && \
pip install --no-cache-dir s3cmd && \
s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :'''
} }
} }
@ -299,15 +253,8 @@ pipeline {
set -e set -e
TEMPDIR=$(mktemp -d) TEMPDIR=$(mktemp -d)
docker pull ghcr.io/linuxserver/jenkins-builder:latest docker pull ghcr.io/linuxserver/jenkins-builder:latest
# Cloned repo paths for templating: docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=master -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest
# ${TEMPDIR}/docker-${CONTAINER_NAME}: Cloned branch master of ${LS_USER}/${LS_REPO} for running the jenkins builder on # Stage 1 - Jenkinsfile update
# ${TEMPDIR}/repo/${LS_REPO}: Cloned branch master of ${LS_USER}/${LS_REPO} for commiting various templated file changes and pushing back to Github
# ${TEMPDIR}/docs/docker-documentation: Cloned docs repo for pushing docs updates to Github
# ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos
# ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github
git clone --branch master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME}
docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true -e PUID=$(id -u) -e PGID=$(id -g) ghcr.io/linuxserver/jenkins-builder:latest
echo "Starting Stage 1 - Jenkinsfile update"
if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then
mkdir -p ${TEMPDIR}/repo mkdir -p ${TEMPDIR}/repo
git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO}
@ -316,17 +263,16 @@ pipeline {
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/
git add Jenkinsfile git add Jenkinsfile
git commit -m 'Bot Updating Templated Files' git commit -m 'Bot Updating Templated Files'
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
echo "Updating Jenkinsfile and exiting build, new one will trigger based on commit" echo "Updating Jenkinsfile"
rm -Rf ${TEMPDIR} rm -Rf ${TEMPDIR}
exit 0 exit 0
else else
echo "Jenkinsfile is up to date." echo "Jenkinsfile is up to date."
fi fi
echo "Starting Stage 2 - Delete old templates" # Stage 2 - Delete old templates
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml .github/workflows/package_trigger.yml" OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf"
for i in ${OLD_TEMPLATES}; do for i in ${OLD_TEMPLATES}; do
if [[ -f "${i}" ]]; then if [[ -f "${i}" ]]; then
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
@ -341,16 +287,15 @@ pipeline {
git rm "${i}" git rm "${i}"
done done
git commit -m 'Bot Updating Templated Files' git commit -m 'Bot Updating Templated Files'
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
echo "Deleting old/deprecated templates and exiting build, new one will trigger based on commit" echo "Deleting old and deprecated templates"
rm -Rf ${TEMPDIR} rm -Rf ${TEMPDIR}
exit 0 exit 0
else else
echo "No templates to delete" echo "No templates to delete"
fi fi
echo "Starting Stage 3 - Update templates" # Stage 3 - Update templates
CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8)
cd ${TEMPDIR}/docker-${CONTAINER_NAME} cd ${TEMPDIR}/docker-${CONTAINER_NAME}
NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8)
@ -371,62 +316,19 @@ pipeline {
fi fi
git add readme-vars.yml ${TEMPLATED_FILES} git add readme-vars.yml ${TEMPLATED_FILES}
git commit -m 'Bot Updating Templated Files' git commit -m 'Bot Updating Templated Files'
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
echo "Updating templates and exiting build, new one will trigger based on commit"
rm -Rf ${TEMPDIR}
exit 0
else else
echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
echo "No templates to update"
fi fi
echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub"
mkdir -p ${TEMPDIR}/docs mkdir -p ${TEMPDIR}/docs
git clone --depth=1 https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation
if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/
cd ${TEMPDIR}/docs/docker-documentation cd ${TEMPDIR}/docs/docker-documentation
GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||')
git add docs/images/docker-${CONTAINER_NAME}.md git add docs/images/docker-${CONTAINER_NAME}.md
echo "Updating docs repo"
git commit -m 'Bot Updating Documentation' git commit -m 'Bot Updating Documentation'
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} || \
(MAXWAIT="10" && echo "Push to docs failed, trying again in ${MAXWAIT} seconds" && \
sleep $((RANDOM % MAXWAIT)) && \
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase && \
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH})
else
echo "Docs update not needed, skipping"
fi
if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then
if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) -gt 25000 ]]; then
echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub"
DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite"
else
echo "Syncing readme to Docker Hub"
DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md"
fi
if curl -s https://hub.docker.com/v2/namespaces/${DOCKERHUB_IMAGE%%/*}/repositories/${DOCKERHUB_IMAGE##*/}/tags | jq -r '.message' | grep -q 404; then
echo "Docker Hub endpoint doesn't exist. Creating endpoint first."
DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token')
curl -s \
-H "Authorization: JWT ${DH_TOKEN}" \
-H "Content-Type: application/json" \
-X POST \
-d '{"name":"'${DOCKERHUB_IMAGE##*/}'", "namespace":"'${DOCKERHUB_IMAGE%%/*}'"}' \
https://hub.docker.com/v2/repositories/ || :
fi
DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token')
curl -s \
-H "Authorization: JWT ${DH_TOKEN}" \
-H "Content-Type: application/json" \
-X PATCH \
-d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \
https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || :
else
echo "Not the default Github branch. Skipping readme sync to Docker Hub."
fi fi
rm -Rf ${TEMPDIR}''' rm -Rf ${TEMPDIR}'''
script{ script{
@ -473,10 +375,10 @@ pipeline {
} }
} }
/* ####################### /* #######################
GitLab Mirroring and Quay.io Repo Visibility GitLab Mirroring
####################### */ ####################### */
// Ping into Gitlab to mirror this repo and have a registry endpoint & mark this repo on Quay.io as public // Ping into Gitlab to mirror this repo and have a registry endpoint
stage("GitLab Mirror and Quay.io Visibility"){ stage("GitLab Mirror"){
when { when {
environment name: 'EXIT_STATUS', value: '' environment name: 'EXIT_STATUS', value: ''
} }
@ -490,10 +392,6 @@ pipeline {
"merge_requests_access_level":"disabled",\ "merge_requests_access_level":"disabled",\
"repository_access_level":"enabled",\ "repository_access_level":"enabled",\
"visibility":"public"}' ''' "visibility":"public"}' '''
sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \
-d "mirror=true&import_url=https://github.com/linuxserver/${LS_REPO}.git" '''
sh '''curl -H "Content-Type: application/json" -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" -X POST "https://quay.io/api/v1/repository${QUAYIMAGE/quay.io/}/changevisibility" \
-d '{"visibility":"public"}' ||: '''
} }
} }
/* ############### /* ###############
@ -522,47 +420,9 @@ pipeline {
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
--label \"org.opencontainers.image.title=Ffmpeg\" \ --label \"org.opencontainers.image.title=Ffmpeg\" \
--label \"org.opencontainers.image.description=A complete, cross-platform solution to record, convert and stream audio and video.\" \ --label \"org.opencontainers.image.description=ffmpeg image by linuxserver.io\" \
--no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \
--provenance=true --sbom=true --builder=container --load \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh '''#! /bin/bash
set -e
IFS=',' read -ra CACHE <<< "$BUILDCACHE"
for i in "${CACHE[@]}"; do
docker tag ${IMAGE}:${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER}
done
'''
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'Quay.io-Robot',
usernameVariable: 'QUAYUSER',
passwordVariable: 'QUAYPASS'
]
]) {
retry_backoff(5,5) {
sh '''#! /bin/bash
set -e
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
if [[ "${PACKAGE_CHECK}" != "true" ]]; then
declare -A pids
IFS=',' read -ra CACHE <<< "$BUILDCACHE"
for i in "${CACHE[@]}"; do
docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} &
pids[$!]="$i"
done
for p in "${!pids[@]}"; do
wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; }
done
fi
'''
}
}
} }
} }
// Build MultiArch Docker containers for push to LS Repo // Build MultiArch Docker containers for push to LS Repo
@ -591,47 +451,9 @@ pipeline {
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
--label \"org.opencontainers.image.title=Ffmpeg\" \ --label \"org.opencontainers.image.title=Ffmpeg\" \
--label \"org.opencontainers.image.description=A complete, cross-platform solution to record, convert and stream audio and video.\" \ --label \"org.opencontainers.image.description=ffmpeg image by linuxserver.io\" \
--no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \
--provenance=true --sbom=true --builder=container --load \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh '''#! /bin/bash
set -e
IFS=',' read -ra CACHE <<< "$BUILDCACHE"
for i in "${CACHE[@]}"; do
docker tag ${IMAGE}:amd64-${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER}
done
'''
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'Quay.io-Robot',
usernameVariable: 'QUAYUSER',
passwordVariable: 'QUAYPASS'
]
]) {
retry_backoff(5,5) {
sh '''#! /bin/bash
set -e
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
if [[ "${PACKAGE_CHECK}" != "true" ]]; then
declare -A pids
IFS=',' read -ra CACHE <<< "$BUILDCACHE"
for i in "${CACHE[@]}"; do
docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} &
pids[$!]="$i"
done
for p in "${!pids[@]}"; do
wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; }
done
fi
'''
}
}
} }
} }
stage('Build ARM64') { stage('Build ARM64') {
@ -640,6 +462,10 @@ pipeline {
} }
steps { steps {
echo "Running on node: ${NODE_NAME}" echo "Running on node: ${NODE_NAME}"
echo 'Logging into Github'
sh '''#! /bin/bash
echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
'''
sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64" sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64"
sh "docker buildx build \ sh "docker buildx build \
--label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \
@ -653,54 +479,19 @@ pipeline {
--label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \
--label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \
--label \"org.opencontainers.image.title=Ffmpeg\" \ --label \"org.opencontainers.image.title=Ffmpeg\" \
--label \"org.opencontainers.image.description=A complete, cross-platform solution to record, convert and stream audio and video.\" \ --label \"org.opencontainers.image.description=ffmpeg image by linuxserver.io\" \
--no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \
--provenance=true --sbom=true --builder=container --load \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh '''#! /bin/bash sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
set -e retry(5) {
IFS=',' read -ra CACHE <<< "$BUILDCACHE" sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
for i in "${CACHE[@]}"; do
docker tag ${IMAGE}:arm64v8-${META_TAG} ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
done
'''
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'Quay.io-Robot',
usernameVariable: 'QUAYUSER',
passwordVariable: 'QUAYPASS'
]
]) {
retry_backoff(5,5) {
sh '''#! /bin/bash
set -e
echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin
echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
if [[ "${PACKAGE_CHECK}" != "true" ]]; then
declare -A pids
IFS=',' read -ra CACHE <<< "$BUILDCACHE"
for i in "${CACHE[@]}"; do
docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} &
pids[$!]="$i"
done
for p in "${!pids[@]}"; do
wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; }
done
fi
'''
}
} }
sh '''#! /bin/bash sh '''#! /bin/bash
containers=$(docker ps -aq) containers=$(docker ps -aq)
if [[ -n "${containers}" ]]; then if [[ -n "${containers}" ]]; then
docker stop ${containers} docker stop ${containers}
fi fi
docker system prune -f --volumes || : docker system prune -af --volumes || : '''
docker image prune -af || :
'''
} }
} }
} }
@ -716,7 +507,7 @@ pipeline {
sh '''#! /bin/bash sh '''#! /bin/bash
set -e set -e
TEMPDIR=$(mktemp -d) TEMPDIR=$(mktemp -d)
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true" ]; then if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG} LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
else else
LOCAL_CONTAINER=${IMAGE}:${META_TAG} LOCAL_CONTAINER=${IMAGE}:${META_TAG}
@ -725,7 +516,7 @@ pipeline {
docker run --rm \ docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock:ro \ -v /var/run/docker.sock:/var/run/docker.sock:ro \
-v ${TEMPDIR}:/tmp \ -v ${TEMPDIR}:/tmp \
ghcr.io/anchore/syft:${SYFT_IMAGE_TAG} \ ghcr.io/anchore/syft:latest \
${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt
NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )
echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github"
@ -737,8 +528,7 @@ pipeline {
wait wait
git add package_versions.txt git add package_versions.txt
git commit -m 'Bot Updating Package Versions' git commit -m 'Bot Updating Package Versions'
git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git master
echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}
echo "Package tag updated, stopping build process" echo "Package tag updated, stopping build process"
else else
@ -804,26 +594,18 @@ pipeline {
} }
sh '''#! /bin/bash sh '''#! /bin/bash
set -e set -e
if grep -q 'docker-baseimage' <<< "${LS_REPO}"; then docker pull ghcr.io/linuxserver/ci:latest
echo "Detected baseimage, setting LSIO_FIRST_PARTY=true"
if [ -n "${CI_DOCKERENV}" ]; then
CI_DOCKERENV="LSIO_FIRST_PARTY=true|${CI_DOCKERENV}"
else
CI_DOCKERENV="LSIO_FIRST_PARTY=true"
fi
fi
docker pull ghcr.io/linuxserver/ci:${CITEST_IMAGETAG}
if [ "${MULTIARCH}" == "true" ]; then if [ "${MULTIARCH}" == "true" ]; then
docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
fi fi
docker run --rm \ docker run --rm \
--shm-size=1gb \ --shm-size=1gb \
-v /var/run/docker.sock:/var/run/docker.sock \ -v /var/run/docker.sock:/var/run/docker.sock \
-e IMAGE=\"${IMAGE}\" \ -e IMAGE=\"${IMAGE}\" \
-e DELAY_START=\"${CI_DELAY}\" \
-e TAGS=\"${CI_TAGS}\" \ -e TAGS=\"${CI_TAGS}\" \
-e META_TAG=\"${META_TAG}\" \ -e META_TAG=\"${META_TAG}\" \
-e RELEASE_TAG=\"latest\" \
-e PORT=\"${CI_PORT}\" \ -e PORT=\"${CI_PORT}\" \
-e SSL=\"${CI_SSL}\" \ -e SSL=\"${CI_SSL}\" \
-e BASE=\"${DIST_IMAGE}\" \ -e BASE=\"${DIST_IMAGE}\" \
@ -833,11 +615,7 @@ pipeline {
-e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_SCREENSHOT=\"${CI_WEB}\" \
-e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \
-e WEB_PATH=\"${CI_WEBPATH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \
-e NODE_NAME=\"${NODE_NAME}\" \ -t ghcr.io/linuxserver/ci:latest \
-e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \
-e COMMIT_SHA=\"${COMMIT_SHA}\" \
-e BUILD_NUMBER=\"${BUILD_NUMBER}\" \
-t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \
python3 test_build.py''' python3 test_build.py'''
} }
} }
@ -852,28 +630,46 @@ pipeline {
environment name: 'EXIT_STATUS', value: '' environment name: 'EXIT_STATUS', value: ''
} }
steps { steps {
retry_backoff(5,5) { withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
],
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'Quay.io-Robot',
usernameVariable: 'QUAYUSER',
passwordVariable: 'QUAYPASS'
]
]) {
retry(5) {
sh '''#! /bin/bash sh '''#! /bin/bash
set -e set -e
for PUSHIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
[[ ${PUSHIMAGE%%/*} =~ \\. ]] && PUSHIMAGEPLUS="${PUSHIMAGE}" || PUSHIMAGEPLUS="docker.io/${PUSHIMAGE}" echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
IFS=',' read -ra CACHE <<< "$BUILDCACHE" echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
for i in "${CACHE[@]}"; do echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
if [[ "${PUSHIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do
CACHEIMAGE=${i} docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG}
fi docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:latest
done docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG}
docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:latest -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \
{ if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; }
if [ -n "${SEMVER}" ]; then if [ -n "${SEMVER}" ]; then
docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER}
{ if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi
docker push ${PUSHIMAGE}:latest
docker push ${PUSHIMAGE}:${META_TAG}
docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then
docker push ${PUSHIMAGE}:${SEMVER}
fi fi
done done
''' '''
} }
} }
} }
}
// If this is a multi arch release push all images and define the manifest // If this is a multi arch release push all images and define the manifest
stage('Docker-Push-Multi') { stage('Docker-Push-Multi') {
when { when {
@ -881,44 +677,88 @@ pipeline {
environment name: 'EXIT_STATUS', value: '' environment name: 'EXIT_STATUS', value: ''
} }
steps { steps {
retry_backoff(5,5) { withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
],
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: 'Quay.io-Robot',
usernameVariable: 'QUAYUSER',
passwordVariable: 'QUAYPASS'
]
]) {
retry(5) {
sh '''#! /bin/bash sh '''#! /bin/bash
set -e set -e
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
[[ ${MANIFESTIMAGE%%/*} =~ \\. ]] && MANIFESTIMAGEPLUS="${MANIFESTIMAGE}" || MANIFESTIMAGEPLUS="docker.io/${MANIFESTIMAGE}" echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin
IFS=',' read -ra CACHE <<< "$BUILDCACHE" echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin
for i in "${CACHE[@]}"; do echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin
if [[ "${MANIFESTIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then if [ "${CI}" == "false" ]; then
CACHEIMAGE=${i} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}
docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
fi fi
done
docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-latest -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; }
docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-latest -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; }
if [ -n "${SEMVER}" ]; then
docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; }
docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; }
fi
done
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest || \ docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG}
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-latest
docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG}
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-latest
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then if [ -n "${SEMVER}" ]; then
docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER}
{ if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER}
fi
docker push ${MANIFESTIMAGE}:amd64-${META_TAG}
docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG}
docker push ${MANIFESTIMAGE}:amd64-latest
docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG}
docker push ${MANIFESTIMAGE}:arm64v8-latest
docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then
docker push ${MANIFESTIMAGE}:amd64-${SEMVER}
docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER}
fi
docker manifest push --purge ${MANIFESTIMAGE}:latest || :
docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest
docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8
docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || :
docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8
docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || :
docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8
if [ -n "${SEMVER}" ]; then
docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || :
docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER}
docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8
fi
token=$(curl -sX GET "https://ghcr.io/token?scope=repository%3Alinuxserver%2F${CONTAINER_NAME}%3Apull" | jq -r '.token')
digest=$(curl -s \
--header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
--header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/linuxserver/${CONTAINER_NAME}/manifests/arm32v7-latest")
if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest || :
docker manifest create ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:amd64-latest
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest
fi
docker manifest push --purge ${MANIFESTIMAGE}:latest
docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG}
docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then
docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER}
fi fi
done done
''' '''
} }
} }
} }
}
// If this is a public release tag it in the LS Github // If this is a public release tag it in the LS Github
stage('Github-Tag-Push-Release') { stage('Github-Tag-Push-Release') {
when { when {
@ -930,41 +770,23 @@ pipeline {
environment name: 'EXIT_STATUS', value: '' environment name: 'EXIT_STATUS', value: ''
} }
steps { steps {
sh '''#! /bin/bash
echo "Auto-generating release notes"
if [ "$(git tag --points-at HEAD)" != "" ]; then
echo "Existing tag points to current commit, suggesting no new LS changes"
AUTO_RELEASE_NOTES="No changes"
else
AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \
-d '{"tag_name":"'${META_TAG}'",\
"target_commitish": "master"}' \
| jq -r '.body' | sed 's|## What.s Changed||')
fi
echo "Pushing New tag for current commit ${META_TAG}" echo "Pushing New tag for current commit ${META_TAG}"
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \
-d '{"tag":"'${META_TAG}'",\ -d '{"tag":"'${META_TAG}'",\
"object": "'${COMMIT_SHA}'",\ "object": "'${COMMIT_SHA}'",\
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\ "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to master",\
"type": "commit",\ "type": "commit",\
"tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' '''
echo "Pushing New release for Tag" echo "Pushing New release for Tag"
sh '''#! /bin/bash
echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json
jq -n \ echo '{"tag_name":"'${META_TAG}'",\
--arg tag_name "$META_TAG" \ "target_commitish": "master",\
--arg target_commitish "master" \ "name": "'${META_TAG}'",\
--arg ci_url "${CI_URL:-N/A}" \ "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start
--arg ls_notes "$AUTO_RELEASE_NOTES" \ printf '","draft": false,"prerelease": false}' >> releasebody.json
--arg remote_notes "$(cat releasebody.json)" \ paste -d'\\0' start releasebody.json > releasebody.json.done
'{ curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
"tag_name": $tag_name,
"target_commitish": $target_commitish,
"name": $tag_name,
"body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes),
"draft": false,
"prerelease": false }' > releasebody.json.done
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done
'''
} }
} }
// Add protection to the release branch // Add protection to the release branch
@ -1002,6 +824,39 @@ EOF
) ''' ) '''
} }
} }
// Use helper container to sync the current README on master to the dockerhub endpoint
stage('Sync-README') {
when {
environment name: 'CHANGE_ID', value: ''
environment name: 'EXIT_STATUS', value: ''
}
steps {
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
]
]) {
sh '''#! /bin/bash
set -e
TEMPDIR=$(mktemp -d)
docker pull ghcr.io/linuxserver/jenkins-builder:latest
docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest
docker pull ghcr.io/linuxserver/readme-sync
docker run --rm=true \
-e DOCKERHUB_USERNAME=$DOCKERUSER \
-e DOCKERHUB_PASSWORD=$DOCKERPASS \
-e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \
-e DOCKER_REPOSITORY=${IMAGE} \
-e GIT_BRANCH=master \
-v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \
ghcr.io/linuxserver/readme-sync bash -c 'node sync'
rm -Rf ${TEMPDIR} '''
}
}
}
// If this is a Pull request send the CI link as a comment on it // If this is a Pull request send the CI link as a comment on it
stage('Pull Request Comment') { stage('Pull Request Comment') {
when { when {
@ -1086,94 +941,32 @@ EOF
###################### */ ###################### */
post { post {
always { always {
sh '''#!/bin/bash
rm -rf /config/.ssh/id_sign
rm -rf /config/.ssh/id_sign.pub
git config --global --unset gpg.format
git config --global --unset user.signingkey
git config --global --unset commit.gpgsign
'''
script{ script{
env.JOB_DATE = sh(
script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''',
returnStdout: true).trim()
if (env.EXIT_STATUS == "ABORTED"){ if (env.EXIT_STATUS == "ABORTED"){
sh 'echo "build aborted"' sh 'echo "build aborted"'
}else{
if (currentBuild.currentResult == "SUCCESS"){
if (env.GITHUBIMAGE =~ /lspipepr/){
env.JOB_WEBHOOK_STATUS='Success'
env.JOB_WEBHOOK_COLOUR=3957028
env.JOB_WEBHOOK_FOOTER='PR Build'
}else if (env.GITHUBIMAGE =~ /lsiodev/){
env.JOB_WEBHOOK_STATUS='Success'
env.JOB_WEBHOOK_COLOUR=3957028
env.JOB_WEBHOOK_FOOTER='Dev Build'
}else{
env.JOB_WEBHOOK_STATUS='Success'
env.JOB_WEBHOOK_COLOUR=1681177
env.JOB_WEBHOOK_FOOTER='Live Build'
} }
}else{ else if (currentBuild.currentResult == "SUCCESS"){
if (env.GITHUBIMAGE =~ /lspipepr/){ sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\
env.JOB_WEBHOOK_STATUS='Failure' "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
env.JOB_WEBHOOK_COLOUR=12669523 "username": "Jenkins"}' ${BUILDS_DISCORD} '''
env.JOB_WEBHOOK_FOOTER='PR Build'
}else if (env.GITHUBIMAGE =~ /lsiodev/){
env.JOB_WEBHOOK_STATUS='Failure'
env.JOB_WEBHOOK_COLOUR=12669523
env.JOB_WEBHOOK_FOOTER='Dev Build'
}else{
env.JOB_WEBHOOK_STATUS='Failure'
env.JOB_WEBHOOK_COLOUR=16711680
env.JOB_WEBHOOK_FOOTER='Live Build'
} }
} else {
sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"'color'": '${JOB_WEBHOOK_COLOUR}',\ sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\
"footer": {"text" : "'"${JOB_WEBHOOK_FOOTER}"'"},\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"timestamp": "'${JOB_DATE}'",\
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** '${JOB_WEBHOOK_STATUS}'\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"username": "Jenkins"}' ${BUILDS_DISCORD} ''' "username": "Jenkins"}' ${BUILDS_DISCORD} '''
} }
} }
} }
cleanup { cleanup {
sh '''#! /bin/bash sh '''#! /bin/bash
echo "Pruning builder!!" echo "Performing docker system prune!!"
docker builder prune -f --builder container || : containers=$(docker ps -aq)
containers=$(docker ps -q)
if [[ -n "${containers}" ]]; then if [[ -n "${containers}" ]]; then
BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') docker stop ${containers}
for container in ${containers}; do
if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then
echo "skipping buildx container in docker stop"
else
echo "Stopping container ${container}"
docker stop ${container}
fi fi
done docker system prune -af --volumes || :
fi
docker system prune -f --volumes || :
docker image prune -af || :
''' '''
cleanWs() cleanWs()
} }
} }
} }
def retry_backoff(int max_attempts, int power_base, Closure c) {
int n = 0
while (n < max_attempts) {
try {
c()
return
} catch (err) {
if ((n + 1) >= max_attempts) {
throw err
}
sleep(power_base ** n)
n++
}
}
return
}

112
README.md
View File

@ -9,7 +9,7 @@
[![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.") [![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") [![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: The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
* regular and timely application updates * regular and timely application updates
* easy user mappings (PGID, PUID) * easy user mappings (PGID, PUID)
@ -18,17 +18,13 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r
* regular security updates * regular security updates
Find us at: Find us at:
* [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://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. * [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
* [Discourse](https://discourse.linuxserver.io) - post on our community forum. * [Discourse](https://discourse.linuxserver.io) - post on our community forum.
* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
* [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 * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
# [linuxserver/ffmpeg](https://github.com/linuxserver/docker-ffmpeg) [![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fffmpeg?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fffmpeg)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fffmpeg?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh)
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg)
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg/releases) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg/releases)
[![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-ffmpeg/packages) [![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-ffmpeg/packages)
@ -40,11 +36,12 @@ Find us at:
[FFmpeg](https://ffmpeg.org) - A complete, cross-platform solution to record, convert and stream audio and video. [FFmpeg](https://ffmpeg.org) - A complete, cross-platform solution to record, convert and stream audio and video.
[![ffmpeg](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ffmpeg.png)](https://ffmpeg.org) [![ffmpeg](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ffmpeg.png)](https://ffmpeg.org)
## 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/). 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/ffmpeg:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. Simply pulling `lscr.io/linuxserver/ffmpeg:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
@ -54,7 +51,7 @@ The architectures supported by this image are:
| :----: | :----: | ---- | | :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> | | x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ✅ | arm64v8-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> |
| armhf | ❌ | | | armhf| ❌ | arm32v7-\<version tag\> |
## Usage ## Usage
@ -64,19 +61,17 @@ If an input file is detected we will run FFmpeg as that user/group so the output
The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below. The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below.
### Included Intel Drivers (latest versions compiled): ### Included Intel Drivers (latest versions compiled):
- iHD Driver: Supports gen8+ (default for Intel)
* iHD Driver: Supports gen8+ (default for Intel) - i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var `LIBVA_DRIVER_NAME=i965` in docker arguments)
* i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var `LIBVA_DRIVER_NAME=i965` in docker arguments) - Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver
* Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver - Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch)
* Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch) - Qsv Runtime:
* Qsv Runtime: - OneVPL: Supports gen12+
- MSDK (libmfx): Supports gen8 - gen12
* OneVPL: Supports gen12+
* MSDK (libmfx): Supports gen8 - gen12
### Basic Transcode ### Basic Transcode
```bash ```
docker run --rm -it \ docker run --rm -it \
-v $(pwd):/config \ -v $(pwd):/config \
linuxserver/ffmpeg \ linuxserver/ffmpeg \
@ -90,7 +85,7 @@ docker run --rm -it \
### Hardware accelerated (VAAPI) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/VAAPI)) ### Hardware accelerated (VAAPI) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/VAAPI))
```bash ```
docker run --rm -it \ docker run --rm -it \
--device=/dev/dri:/dev/dri \ --device=/dev/dri:/dev/dri \
-v $(pwd):/config \ -v $(pwd):/config \
@ -106,7 +101,7 @@ docker run --rm -it \
### Hardware accelerated (QSV) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/QuickSync)) ### Hardware accelerated (QSV) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/QuickSync))
```bash ```
docker run --rm -it \ docker run --rm -it \
--device=/dev/dri:/dev/dri \ --device=/dev/dri:/dev/dri \
-v $(pwd):/config \ -v $(pwd):/config \
@ -121,9 +116,7 @@ docker run --rm -it \
### Nvidia Hardware accelerated ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#CUDANVENCNVDEC)) ### Nvidia Hardware accelerated ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#CUDANVENCNVDEC))
Nvidia support __requires__ [Nvidia container toolkit](https://github.com/NVIDIA/nvidia-container-toolkit) and the Nvidia drivers installed on the host. ```
```bash
docker run --rm -it \ docker run --rm -it \
--runtime=nvidia \ --runtime=nvidia \
-v $(pwd):/config \ -v $(pwd):/config \
@ -137,45 +130,20 @@ docker run --rm -it \
/config/output.mkv /config/output.mkv
``` ```
### Vulkan support
Vulkan support has been added to x86_64 (tested with Intel and AMD iGPU) ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#Vulkan)).
```bash
docker run --rm -it \
--device=/dev/dri:/dev/dri \
-v $(pwd):/config \
-e ANV_VIDEO_DECODE=1 \
linuxserver/ffmpeg \
-init_hw_device "vulkan=vk:0" \
-hwaccel vulkan \
-hwaccel_output_format vulkan \
-i /config/input.mkv \
-f null - -benchmark
```
#### Vulkan supports three drivers
* ANV: To enable for Intel, set the env var `ANV_VIDEO_DECODE=1`
* RADV: To enable on AMD, set the env var `RADV_PERFTEST=video_decode`
* NVIDIA: To enable on Nvidia, install Nvidia Vulkan Beta drivers on the host per [this article](https://lynne.ee/vulkan-video-decoding.html#driver-support)
## 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-ffmpeg.git git clone https://github.com/linuxserver/docker-ffmpeg.git
cd docker-ffmpeg cd docker-ffmpeg
docker build \ docker build \
--no-cache \ --no-cache \
--pull \ --pull \
-t lscr.io/linuxserver/docker-ffmpeg:latest . -t linuxserver/ffmpeg:latest .
``` ```
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-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 multiarch/qemu-user-static:register --reset
``` ```
@ -183,48 +151,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions ## Versions
* **06.01.26:** - Remove mpp from aarch64 build due to upstream DMCA removal. Bump harfbuzz, libdav1d, libdrm, libpng, libva, libvpl, mesa, opus, shaderc and vulkan-sdk.
* **01.12.25:** - Bump ffmpeg to 8.0.1.
* **19.11.25:** - Bump aom, freetype, harfbuzz, Intel drivers and libs, kvazaar, libdav1d, libdrm, mesa, mpp, openjpeg, shaderc, svt-av1 and vulkan-sdk.
* **23.08.25:** - Bump ffmpeg to 8.0. Bump harfbuzz, Intel drivers and libs, libdovi, libdrm, libpng, mesa, ogg, rav1e, shaderc, svt-av1, vulkan-sdk, webp and zimg.
* **06.08.25:** - Bump svt-av1.
* **07.06.25:** - Bump harfbuzz, libass, libdovi, libplacebo, libpng, mesa, rav1e, shaderc, libvpx and vulkan-sdk.
* **04.06.25:** - Add libdrm and rkmpp to arm64 image.
* **21.04.25:** - Bump aom, Intel drivers and libs, harfbuzz, mesa, svt-av1, libvpx, libtheora, vulkan-sdk and vvenc.
* **07.03.25:** - Bump ffmpeg to 7.1.1, Bump aom, fontconfig, Intel drivers and libs, harfbuzz, libdav1d, libdovi, libdrm, liblc3, libpng, mesa, openjpeg, shaderc, svt-av1, vulkan-sdk, vvenc and webp.
* **26.11.24:** - Bump libaom, mesa, rist, srt and libx265.
* **07.11.24:** - Bump harfbuzz, Intel drivers and libs, libdav1d, mesa, svtav1, vpx, vulkan sdk and vvenc.
* **05.10.24:** - Add support for libvvenc on aarch64. Bump mesa.
* **30.09.24:** - Bump ffmpeg for 7.1. Add support for libvvenc (amd64 only) and liblc3. Bump libfribidi and libharfbuzz.
* **24.09.24:** - Let ffmpeg terminate gracefully on docker stop/restart. Bump libharfbuzz, libpng, mesa, shaderc and libx265.
* **09.09.24:** - Add libzmq.
* **31.08.24:** - Bump libaom, libdrm, libvpl, mesa and svtav1. Enable nvdec/nvenc on arm64 (untested).
* **17.08.24:** - Bump ffmpeg, freetype, libdovi and mesa.
* **14.08.24:** - Add SRT and libRIST.
* **01.08.24:** - Add libdav1d. Bump libharfbuzz, various Intel drivers and libs, libass, libdrm, libplacebo, libva, mesa, svtav1, and vulkan sdk.
* **21.06.24:** - Bump mesa and libaom. Update lib path for rav1e.
* **08.06.24:** - Bump ffmpeg, fribidi, libdrm, mesa and vpx.
* **26.05.24:** - Rebase to Ubuntu Noble. Bump libass, libharfbuzz and vulkan-sdk.
* **22.05.24:** - Bump Mesa to 24.1.0.
* **20.05.24:** - Bump libsvtav1.
* **09.05.24:** - Bump libaom, fribidi, kvazaar, various Intel drivers and libs, Mesa, opus, shaderc, webp and x265.
* **11.04.24:** - Explicitly disable libdrm on aarch64, add new lib `libxcb-shm0`. Add quick test at the end of build.
* **10.04.24:** - Compile ffmpeg with `libfribidi`, `libharfbuzz` and `libfontconfig`, compile libharfbuzz.
* **05.04.24:** - Bump ffmpeg to 7.0, bump libdovi, libva, mesa and vulkan-sdk.
* **16.03.24:** - Bump libaom, mesa, openjpeg, opus, shaderc and svtav1.
* **11.02.24:** - Add Zimg support.
* **09.02.24:** - Bump ffmpeg to 6.1.1, bump other deps.
* **08.02.24:** - Enable cuda-llvm, clean up rustc.
* **01.02.24:** - Bump Mesa to v24.
* **21.01.24:** - Add alsa support.
* **18.01.24:** - Let the wrapper pass the ffmpeg exit code to docker run. Bump various libs.
* **01.01.24:** - Add rav1e support. Bump libaom, fdkaac, libdrm, libvmaf, libvpl, mesa and svt-av1.
* **06.12.23:** - Add libplacebo and libdobi to x86_64.
* **05.12.23:** - Bump Mesa. Fix vdpau. Fix AMD VAAPI.
* **25.11.23:** - Compile Mesa from source. Add proper Vulkan support (env var `ENABLE_VULKAN=true` no longer needed)(tested with Intel).
* **22.11.23:** - Add shaderc and (preliminary) Vulkan support (via env var `ENABLE_VULKAN=true`) to x86_64. Bump Intel drivers and other libs.
* **13.11.23:** - Bump FFmpeg to 6.1.
* **02.11.23:** - Remove `--enable-small` from ffmpeg build options to add back some features.
* **05.10.23:** - Add support for SVT-AV1. Update various libraries. * **05.10.23:** - Add support for SVT-AV1. Update various libraries.
* **16.08.23:** - Added support for WebP formats. * **16.08.23:** - Added support for WebP formats.
* **11.08.23:** - Add optional i965 driver for gen5+ support. * **11.08.23:** - Add optional i965 driver for gen5+ support.

View File

@ -3,10 +3,11 @@
# jenkins variables # jenkins variables
project_name: docker-ffmpeg project_name: docker-ffmpeg
external_type: na external_type: na
custom_version_command: "echo 8.0.1-cli" custom_version_command: "echo 6.0-cli"
release_type: stable release_type: stable
release_tag: latest release_tag: latest
ls_branch: master ls_branch: master
build_armhf: false
repo_vars: repo_vars:
- BUILD_VERSION_ARG = 'FFMPEG_VERSION' - BUILD_VERSION_ARG = 'FFMPEG_VERSION'
- LS_USER = 'linuxserver' - LS_USER = 'linuxserver'

View File

@ -1,181 +1,175 @@
NAME VERSION TYPE NAME VERSION TYPE
adduser 3.137ubuntu1 deb adduser 3.118ubuntu5 deb
alsa-topology-conf 1.2.5.1-2 deb apt 2.4.10 deb
alsa-ucm-conf 1.2.10-1ubuntu5.9 deb apt-utils 2.4.10 deb
apt 2.8.3 deb base-files 12ubuntu4.3 deb
apt-utils 2.8.3 deb base-passwd 3.5.52build1 deb
base-files 13ubuntu10.4 deb bash 5.1-6ubuntu1 deb
base-passwd 3.6.3build1 deb bash 5.1.16 binary
bash 5.2.21-2ubuntu4 deb bsdutils 1:2.37.2-4ubuntu3 deb
bsdutils 1:2.39.3-9ubuntu6.4 deb ca-certificates 20230311ubuntu0.22.04.1 deb
ca-certificates 20240203 deb coreutils 8.32-4.1ubuntu1 deb
catatonit 0.1.7-1 deb curl 7.81.0-1ubuntu1.14 deb
coreutils 9.4-3ubuntu6.1 deb dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
cron 3.0pl1-184ubuntu2 deb debconf 1.5.79ubuntu1 deb
cron-daemon-common 3.0pl1-184ubuntu2 deb debianutils 5.5-1ubuntu2 deb
curl 8.5.0-2ubuntu10.6 deb diffutils 1:3.8-0ubuntu2 deb
dash 0.5.12-6ubuntu5 deb dirmngr 2.2.27-3ubuntu2.1 deb
debconf 1.5.86ubuntu1 deb dpkg 1.21.1ubuntu2.2 deb
debianutils 5.17build1 deb e2fsprogs 1.46.5-2ubuntu1.1 deb
diffutils 1:3.10-1build1 deb findutils 4.8.0-1ubuntu3 deb
dirmngr 2.4.4-2ubuntu17.4 deb gcc-12-base 12.3.0-1ubuntu1~22.04 deb
dpkg 1.22.6ubuntu6.5 deb gnupg 2.2.27-3ubuntu2.1 deb
e2fsprogs 1.47.0-2.4~exp1ubuntu4.1 deb gnupg-l10n 2.2.27-3ubuntu2.1 deb
findutils 4.9.0-5build1 deb gnupg-utils 2.2.27-3ubuntu2.1 deb
gcc-14-base 14.2.0-4ubuntu2~24.04 deb gpg 2.2.27-3ubuntu2.1 deb
gnupg 2.4.4-2ubuntu17.4 deb gpg-agent 2.2.27-3ubuntu2.1 deb
gnupg-l10n 2.4.4-2ubuntu17.4 deb gpg-wks-client 2.2.27-3ubuntu2.1 deb
gnupg-utils 2.4.4-2ubuntu17.4 deb gpg-wks-server 2.2.27-3ubuntu2.1 deb
gpg 2.4.4-2ubuntu17.4 deb gpgconf 2.2.27-3ubuntu2.1 deb
gpg-agent 2.4.4-2ubuntu17.4 deb gpgsm 2.2.27-3ubuntu2.1 deb
gpg-wks-client 2.4.4-2ubuntu17.4 deb gpgv 2.2.27-3ubuntu2.1 deb
gpgconf 2.4.4-2ubuntu17.4 deb grep 3.7-1build1 deb
gpgsm 2.4.4-2ubuntu17.4 deb gzip 1.10-4ubuntu4.1 deb
gpgv 2.4.4-2ubuntu17.4 deb hostname 3.23ubuntu2 deb
grep 3.11-4build1 deb init-system-helpers 1.62 deb
gzip 1.12-1ubuntu3.1 deb jq 1.6-2.1ubuntu3 deb
hostname 3.23+nmu2ubuntu2 deb libacl1 2.3.1-1 deb
init-system-helpers 1.66ubuntu1 deb libapt-pkg6.0 2.4.10 deb
jq 1.7.1-3ubuntu0.24.04.1 deb libassuan0 2.5.5-1build1 deb
keyboxd 2.4.4-2ubuntu17.4 deb libattr1 1:2.5.1-1build1 deb
krb5-locales 1.20.1-6ubuntu2.6 deb libaudit-common 1:3.0.7-1build1 deb
libacl1 2.3.2-1build1.1 deb libaudit1 1:3.0.7-1build1 deb
libapt-pkg6.0t64 2.8.3 deb libblkid1 2.37.2-4ubuntu3 deb
libasound2-data 1.2.11-1ubuntu0.1 deb libbrotli1 1.0.9-2build6 deb
libasound2t64 1.2.11-1ubuntu0.1 deb libbsd0 0.11.5-1 deb
libassuan0 2.5.6-1build1 deb libbz2-1.0 1.0.8-5build1 deb
libattr1 1:2.5.2-1build1.1 deb libc-bin 2.35-0ubuntu3.1 deb
libaudit-common 1:3.1.2-2.1build1.1 deb libc6 2.35-0ubuntu3.1 deb
libaudit1 1:3.1.2-2.1build1.1 deb libcap-ng0 0.7.9-2.2build3 deb
libblkid1 2.39.3-9ubuntu6.4 deb libcap2 1:2.44-1ubuntu0.22.04.1 deb
libbrotli1 1.1.0-2build2 deb libcom-err2 1.46.5-2ubuntu1.1 deb
libbsd0 0.12.1-1build1.1 deb libcrypt1 1:4.4.27-1 deb
libbz2-1.0 1.0.8-5.1build0.1 deb libcurl4 7.81.0-1ubuntu1.14 deb
libc-bin 2.39-0ubuntu8.7 deb libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
libc6 2.39-0ubuntu8.7 deb libdebconfclient0 0.261ubuntu1 deb
libcap-ng0 0.8.4-2build2 deb libexpat1 2.4.7-1ubuntu0.2 deb
libcap2 1:2.66-5ubuntu2.2 deb libext2fs2 1.46.5-2ubuntu1.1 deb
libcom-err2 1.47.0-2.4~exp1ubuntu4.1 deb libffi8 3.4.2-4 deb
libcrypt1 1:4.4.36-4build1 deb libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb
libcurl4t64 8.5.0-2ubuntu10.6 deb libgcc-s1 12.3.0-1ubuntu1~22.04 deb
libdb5.3t64 5.3.28+dfsg2-7 deb libgcrypt20 1.9.4-3ubuntu3 deb
libdebconfclient0 0.271ubuntu3 deb libglib2.0-0 2.72.4-0ubuntu2.2 deb
libedit2 3.1-20230828-1build1 deb libglib2.0-data 2.72.4-0ubuntu2.2 deb
libelf1t64 0.190-1.1ubuntu0.1 deb libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
libexpat1 2.6.1-2ubuntu0.3 deb libgnutls30 3.7.3-4ubuntu1.2 deb
libext2fs2t64 1.47.0-2.4~exp1ubuntu4.1 deb libgomp1 12.3.0-1ubuntu1~22.04 deb
libffi8 3.4.6-1build1 deb libgpg-error0 1.43-3 deb
libgcc-s1 14.2.0-4ubuntu2~24.04 deb libgraphite2-3 1.3.14-1build2 deb
libgcrypt20 1.10.3-2build1 deb libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb
libglib2.0-0t64 2.80.0-6ubuntu3.8 deb libharfbuzz0b 2.7.4-1ubuntu3.1 deb
libglib2.0-data 2.80.0-6ubuntu3.8 deb libhogweed6 3.7.3-1build2 deb
libgmp10 2:6.3.0+dfsg-2ubuntu6.1 deb libicu70 70.1-2 deb
libgnutls30t64 3.8.3-1.1ubuntu3.4 deb libidn2-0 2.3.2-2build1 deb
libgomp1 14.2.0-4ubuntu2~24.04 deb libjpeg-turbo8 2.1.2-0ubuntu1 deb
libgpg-error0 1.47-3build2.1 deb libjpeg8 8c-2ubuntu10 deb
libgssapi-krb5-2 1.20.1-6ubuntu2.6 deb libjq1 1.6-2.1ubuntu3 deb
libhogweed6t64 3.9.1-2.2build1.1 deb libk5crypto3 1.19.2-2ubuntu0.2 deb
libicu74 74.2-1ubuntu3.1 deb libkeyutils1 1.6.1-2ubuntu3 deb
libidn2-0 2.3.7-2build1.1 deb libkrb5-3 1.19.2-2ubuntu0.2 deb
libjpeg-turbo8 2.1.5-2ubuntu2 deb libkrb5support0 1.19.2-2ubuntu0.2 deb
libjpeg8 8c-2ubuntu11 deb libksba8 1.6.0-2ubuntu0.2 deb
libjq1 1.7.1-3ubuntu0.24.04.1 deb libldap-2.5-0 2.5.16+dfsg-0ubuntu0.22.04.1 deb
libk5crypto3 1.20.1-6ubuntu2.6 deb libldap-common 2.5.16+dfsg-0ubuntu0.22.04.1 deb
libkeyutils1 1.6.3-3build1 deb liblz4-1 1.9.3-2build2 deb
libkrb5-3 1.20.1-6ubuntu2.6 deb liblzma5 5.2.5-2ubuntu1 deb
libkrb5support0 1.20.1-6ubuntu2.6 deb libmd0 1.0.4-1build1 deb
libksba8 1.6.6-1build1 deb libmount1 2.37.2-4ubuntu3 deb
libldap-common 2.6.10+dfsg-0ubuntu0.24.04.1 deb libncurses6 6.3-2ubuntu0.1 deb
libldap2 2.6.10+dfsg-0ubuntu0.24.04.1 deb libncursesw6 6.3-2ubuntu0.1 deb
libllvm18 1:18.1.3-1ubuntu1 deb libnettle8 3.7.3-1build2 deb
liblz4-1 1.9.4-1build1.1 deb libnghttp2-14 1.43.0-1build3 deb
liblzma5 5.6.1+really5.4.5-1ubuntu0.2 deb libnpth0 1.6-3build2 deb
libmd0 1.1.0-2build1.1 deb libnsl2 1.3.0-2build2 deb
libmount1 2.39.3-9ubuntu6.4 deb libonig5 6.9.7.1-2build1 deb
libncursesw6 6.4+20240113-1ubuntu2 deb libp11-kit0 0.24.0-6build1 deb
libnettle8t64 3.9.1-2.2build1.1 deb libpam-modules 1.4.0-11ubuntu2.3 deb
libnghttp2-14 1.59.0-1ubuntu0.2 deb libpam-modules-bin 1.4.0-11ubuntu2.3 deb
libnpth0t64 1.6-3.1build1 deb libpam-runtime 1.4.0-11ubuntu2.3 deb
libonig5 6.9.9-1build1 deb libpam0g 1.4.0-11ubuntu2.3 deb
libp11-kit0 0.25.3-4ubuntu2.1 deb libpciaccess0 0.16-3 deb
libpam-modules 1.5.3-5ubuntu5.5 deb libpcre2-8-0 10.39-3ubuntu0.1 deb
libpam-modules-bin 1.5.3-5ubuntu5.5 deb libpcre3 2:8.39-13ubuntu0.22.04.1 deb
libpam-runtime 1.5.3-5ubuntu5.5 deb libpng16-16 1.6.37-3build5 deb
libpam0g 1.5.3-5ubuntu5.5 deb libprocps8 2:3.3.17-6ubuntu2 deb
libpciaccess0 0.17-3ubuntu0.24.04.2 deb libpsl5 0.21.0-1.2build2 deb
libpcre2-8-0 10.42-4ubuntu2.1 deb libreadline8 8.1.2-1 deb
libproc2-0 2:4.0.4-4ubuntu3.2 deb librtmp1 2.4+20151223.gitfa8646d.1-2build4 deb
libpsl5t64 0.21.2-1.1build1 deb libsasl2-2 2.1.27+dfsg2-3ubuntu1.2 deb
libreadline8t64 8.2-4build1 deb libsasl2-modules 2.1.27+dfsg2-3ubuntu1.2 deb
librtmp1 2.4+20151223.gitfa8646d.1-2build7 deb libsasl2-modules-db 2.1.27+dfsg2-3ubuntu1.2 deb
libsasl2-2 2.1.28+dfsg1-5ubuntu3.1 deb libseccomp2 2.5.3-2ubuntu2 deb
libsasl2-modules 2.1.28+dfsg1-5ubuntu3.1 deb libselinux1 3.3-1build2 deb
libsasl2-modules-db 2.1.28+dfsg1-5ubuntu3.1 deb libsemanage-common 3.3-1build2 deb
libseccomp2 2.5.5-1ubuntu3.1 deb libsemanage2 3.3-1build2 deb
libselinux1 3.5-2ubuntu2.1 deb libsepol2 3.3-1build1 deb
libsemanage-common 3.5-1build5 deb libsmartcols1 2.37.2-4ubuntu3 deb
libsemanage2 3.5-1build5 deb libsqlite3-0 3.37.2-2ubuntu0.1 deb
libsepol2 3.5-2build1 deb libss2 1.46.5-2ubuntu1.1 deb
libsmartcols1 2.39.3-9ubuntu6.4 deb libssh-4 0.9.6-2ubuntu0.22.04.1 deb
libsqlite3-0 3.45.1-1ubuntu2.5 deb libssl3 3.0.2-0ubuntu1.10 deb
libss2 1.47.0-2.4~exp1ubuntu4.1 deb libstdc++6 12.3.0-1ubuntu1~22.04 deb
libssh-4 0.10.6-2ubuntu0.2 deb libsystemd0 249.11-0ubuntu3.9 deb
libssl3t64 3.0.13-0ubuntu3.7 deb libtasn1-6 4.18.0-4build1 deb
libstdc++6 14.2.0-4ubuntu2~24.04 deb libtinfo6 6.3-2ubuntu0.1 deb
libsystemd0 255.4-1ubuntu8.12 deb libtirpc-common 1.3.2-2ubuntu0.1 deb
libtasn1-6 4.19.0-3ubuntu0.24.04.2 deb libtirpc3 1.3.2-2ubuntu0.1 deb
libtinfo6 6.4+20240113-1ubuntu2 deb libudev1 249.11-0ubuntu3.9 deb
libudev1 255.4-1ubuntu8.12 deb libunistring2 1.0-1 deb
libunistring5 1.1-2build1.1 deb libuuid1 2.37.2-4ubuntu3 deb
libuuid1 2.39.3-9ubuntu6.4 deb libv4l-0 1.22.1-2build1 deb
libv4l-0t64 1.26.1-4build3 deb libv4lconvert0 1.22.1-2build1 deb
libv4lconvert0t64 1.26.1-4build3 deb libwayland-client0 1.20.0-1ubuntu0.1 deb
libwayland-client0 1.22.0-2.1build1 deb libx11-6 2:1.7.5-1ubuntu0.3 deb
libx11-6 2:1.8.7-1build1 deb libx11-data 2:1.7.5-1ubuntu0.3 deb
libx11-data 2:1.8.7-1build1 deb libx11-xcb1 2:1.7.5-1ubuntu0.3 deb
libx11-xcb1 2:1.8.7-1build1 deb libxau6 1:1.0.9-1build5 deb
libxau6 1:1.0.9-1build6 deb libxcb-dri3-0 1.14-3ubuntu3 deb
libxcb-dri2-0 1.15-1ubuntu2 deb libxcb-shape0 1.14-3ubuntu3 deb
libxcb-dri3-0 1.15-1ubuntu2 deb libxcb-xfixes0 1.14-3ubuntu3 deb
libxcb-present0 1.15-1ubuntu2 deb libxcb1 1.14-3ubuntu3 deb
libxcb-randr0 1.15-1ubuntu2 deb libxdmcp6 1:1.1.3-0ubuntu5 deb
libxcb-shape0 1.15-1ubuntu2 deb libxext6 2:1.3.4-1build1 deb
libxcb-shm0 1.15-1ubuntu2 deb libxfixes3 1:6.0.0-1 deb
libxcb-sync1 1.15-1ubuntu2 deb libxml2 2.9.13+dfsg-1ubuntu0.3 deb
libxcb-xfixes0 1.15-1ubuntu2 deb libxxhash0 0.8.1-1 deb
libxcb1 1.15-1ubuntu2 deb libzstd1 1.4.8+dfsg-3build1 deb
libxdmcp6 1:1.1.3-0ubuntu6 deb locales 2.35-0ubuntu3.4 deb
libxext6 2:1.3.4-1build2 deb login 1:4.8.1-2ubuntu2.1 deb
libxfixes3 1:6.0.0-2build1 deb logsave 1.46.5-2ubuntu1.1 deb
libxml2 2.9.14+dfsg-1.3ubuntu3.7 deb lsb-base 11.1.0ubuntu4 deb
libxshmfence1 1.3-1build5 deb mawk 1.3.4.20200120-3 deb
libxxhash0 0.8.2-2build1 deb mount 2.37.2-4ubuntu3 deb
libzstd1 1.5.5+dfsg2-2build1.1 deb ncurses-base 6.3-2ubuntu0.1 deb
locales 2.39-0ubuntu8.7 deb ncurses-bin 6.3-2ubuntu0.1 deb
login 1:4.13+dfsg1-4ubuntu3.2 deb netcat 1.218-4ubuntu1 deb
logsave 1.47.0-2.4~exp1ubuntu4.1 deb netcat-openbsd 1.218-4ubuntu1 deb
mawk 1.3.4.20240123-1build1 deb ocl-icd-libopencl1 2.2.14-3 deb
mount 2.39.3-9ubuntu6.4 deb openssl 3.0.2-0ubuntu1.12 deb
ncurses-base 6.4+20240113-1ubuntu2 deb passwd 1:4.8.1-2ubuntu2.1 deb
ncurses-bin 6.4+20240113-1ubuntu2 deb perl-base 5.34.0-3ubuntu1.2 deb
netcat-openbsd 1.226-1ubuntu2 deb pinentry-curses 1.1.1-1build2 deb
ocl-icd-libopencl1 2.3.2-1build1 deb procps 2:3.3.17-6ubuntu2 deb
openssl 3.0.13-0ubuntu3.7 deb publicsuffix 20211207.1025-1 deb
passwd 1:4.13+dfsg1-4ubuntu3.2 deb readline-common 8.1.2-1 deb
perl-base 5.38.2-3.2ubuntu0.2 deb sed 4.8-1ubuntu2 deb
pinentry-curses 1.2.1-3ubuntu5 deb sensible-utils 0.0.17 deb
procps 2:4.0.4-4ubuntu3.2 deb shared-mime-info 2.1-2 deb
publicsuffix 20231001.0357-0.1 deb sysvinit-utils 3.01-1ubuntu1 deb
readline-common 8.2-4build1 deb tar 1.34+dfsg-1ubuntu0.1.22.04.1 deb
sed 4.9-2build1 deb tzdata 2023c-0ubuntu0.22.04.2 deb
sensible-utils 0.0.22 deb ubuntu-keyring 2021.03.26 deb
shared-mime-info 2.4-4 deb usrmerge 25ubuntu2 deb
systemd-standalone-sysusers 255.4-1ubuntu8.12 deb util-linux 2.37.2-4ubuntu3 deb
sysvinit-utils 3.08-6ubuntu3 deb xdg-user-dirs 0.17-2ubuntu4 deb
tar 1.35+dfsg-3build1 deb zlib1g 1:1.2.11.dfsg-2ubuntu9.2 deb
tzdata 2025b-0ubuntu0.24.04.1 deb
ubuntu-keyring 2023.11.28.1 deb
unminimize 0.2.1 deb
util-linux 2.39.3-9ubuntu6.4 deb
xdg-user-dirs 0.18-1build1 deb
zlib1g 1:1.3.dfsg-3.1ubuntu2.1 deb

View File

@ -2,9 +2,6 @@
# project information # project information
project_name: ffmpeg project_name: ffmpeg
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ffmpeg.png"
project_blurb: A complete, cross-platform solution to record, convert and stream audio and video.
project_categories: "Media Tools"
full_custom_readme: | full_custom_readme: |
{% raw -%} {% raw -%}
[![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)
@ -16,7 +13,7 @@ full_custom_readme: |
[![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.") [![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") [![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: The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :-
* regular and timely application updates * regular and timely application updates
* easy user mappings (PGID, PUID) * easy user mappings (PGID, PUID)
@ -25,17 +22,13 @@ full_custom_readme: |
* regular security updates * regular security updates
Find us at: Find us at:
* [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://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. * [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
* [Discourse](https://discourse.linuxserver.io) - post on our community forum. * [Discourse](https://discourse.linuxserver.io) - post on our community forum.
* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
* [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 * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
# [linuxserver/ffmpeg](https://github.com/linuxserver/docker-ffmpeg) [![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fffmpeg?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Fffmpeg)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Fffmpeg?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh)
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg)
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg/releases) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-ffmpeg.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-ffmpeg/releases)
[![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-ffmpeg/packages) [![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-ffmpeg/packages)
@ -47,11 +40,12 @@ full_custom_readme: |
[FFmpeg](https://ffmpeg.org) - A complete, cross-platform solution to record, convert and stream audio and video. [FFmpeg](https://ffmpeg.org) - A complete, cross-platform solution to record, convert and stream audio and video.
[![ffmpeg](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ffmpeg.png)](https://ffmpeg.org) [![ffmpeg](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ffmpeg.png)](https://ffmpeg.org)
## 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/). 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/ffmpeg:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. Simply pulling `lscr.io/linuxserver/ffmpeg:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
@ -61,7 +55,7 @@ full_custom_readme: |
| :----: | :----: | ---- | | :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> | | x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ✅ | arm64v8-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> |
| armhf | ❌ | | | armhf| ❌ | arm32v7-\<version tag\> |
## Usage ## Usage
@ -71,19 +65,17 @@ full_custom_readme: |
The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below. The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below.
### Included Intel Drivers (latest versions compiled): ### Included Intel Drivers (latest versions compiled):
- iHD Driver: Supports gen8+ (default for Intel)
* iHD Driver: Supports gen8+ (default for Intel) - i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var `LIBVA_DRIVER_NAME=i965` in docker arguments)
* i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var `LIBVA_DRIVER_NAME=i965` in docker arguments) - Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver
* Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver - Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch)
* Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch) - Qsv Runtime:
* Qsv Runtime: - OneVPL: Supports gen12+
- MSDK (libmfx): Supports gen8 - gen12
* OneVPL: Supports gen12+
* MSDK (libmfx): Supports gen8 - gen12
### Basic Transcode ### Basic Transcode
```bash ```
docker run --rm -it \ docker run --rm -it \
-v $(pwd):/config \ -v $(pwd):/config \
linuxserver/ffmpeg \ linuxserver/ffmpeg \
@ -97,7 +89,7 @@ full_custom_readme: |
### Hardware accelerated (VAAPI) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/VAAPI)) ### Hardware accelerated (VAAPI) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/VAAPI))
```bash ```
docker run --rm -it \ docker run --rm -it \
--device=/dev/dri:/dev/dri \ --device=/dev/dri:/dev/dri \
-v $(pwd):/config \ -v $(pwd):/config \
@ -113,7 +105,7 @@ full_custom_readme: |
### Hardware accelerated (QSV) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/QuickSync)) ### Hardware accelerated (QSV) ([click for more info](https://trac.ffmpeg.org/wiki/Hardware/QuickSync))
```bash ```
docker run --rm -it \ docker run --rm -it \
--device=/dev/dri:/dev/dri \ --device=/dev/dri:/dev/dri \
-v $(pwd):/config \ -v $(pwd):/config \
@ -128,9 +120,7 @@ full_custom_readme: |
### Nvidia Hardware accelerated ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#CUDANVENCNVDEC)) ### Nvidia Hardware accelerated ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#CUDANVENCNVDEC))
Nvidia support __requires__ [Nvidia container toolkit](https://github.com/NVIDIA/nvidia-container-toolkit) and the Nvidia drivers installed on the host. ```
```bash
docker run --rm -it \ docker run --rm -it \
--runtime=nvidia \ --runtime=nvidia \
-v $(pwd):/config \ -v $(pwd):/config \
@ -144,45 +134,20 @@ full_custom_readme: |
/config/output.mkv /config/output.mkv
``` ```
### Vulkan support
Vulkan support has been added to x86_64 (tested with Intel and AMD iGPU) ([click for more info](https://trac.ffmpeg.org/wiki/HWAccelIntro#Vulkan)).
```bash
docker run --rm -it \
--device=/dev/dri:/dev/dri \
-v $(pwd):/config \
-e ANV_VIDEO_DECODE=1 \
linuxserver/ffmpeg \
-init_hw_device "vulkan=vk:0" \
-hwaccel vulkan \
-hwaccel_output_format vulkan \
-i /config/input.mkv \
-f null - -benchmark
```
#### Vulkan supports three drivers
* ANV: To enable for Intel, set the env var `ANV_VIDEO_DECODE=1`
* RADV: To enable on AMD, set the env var `RADV_PERFTEST=video_decode`
* NVIDIA: To enable on Nvidia, install Nvidia Vulkan Beta drivers on the host per [this article](https://lynne.ee/vulkan-video-decoding.html#driver-support)
## 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-ffmpeg.git git clone https://github.com/linuxserver/docker-ffmpeg.git
cd docker-ffmpeg cd docker-ffmpeg
docker build \ docker build \
--no-cache \ --no-cache \
--pull \ --pull \
-t lscr.io/linuxserver/docker-ffmpeg:latest . -t linuxserver/ffmpeg:latest .
``` ```
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-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 multiarch/qemu-user-static:register --reset
``` ```
@ -190,48 +155,6 @@ full_custom_readme: |
## Versions ## Versions
* **06.01.26:** - Remove mpp from aarch64 build due to upstream DMCA removal. Bump harfbuzz, libdav1d, libdrm, libpng, libva, libvpl, mesa, opus, shaderc and vulkan-sdk.
* **01.12.25:** - Bump ffmpeg to 8.0.1.
* **19.11.25:** - Bump aom, freetype, harfbuzz, Intel drivers and libs, kvazaar, libdav1d, libdrm, mesa, mpp, openjpeg, shaderc, svt-av1 and vulkan-sdk.
* **23.08.25:** - Bump ffmpeg to 8.0. Bump harfbuzz, Intel drivers and libs, libdovi, libdrm, libpng, mesa, ogg, rav1e, shaderc, svt-av1, vulkan-sdk, webp and zimg.
* **06.08.25:** - Bump svt-av1.
* **07.06.25:** - Bump harfbuzz, libass, libdovi, libplacebo, libpng, mesa, rav1e, shaderc, libvpx and vulkan-sdk.
* **04.06.25:** - Add libdrm and rkmpp to arm64 image.
* **21.04.25:** - Bump aom, Intel drivers and libs, harfbuzz, mesa, svt-av1, libvpx, libtheora, vulkan-sdk and vvenc.
* **07.03.25:** - Bump ffmpeg to 7.1.1, Bump aom, fontconfig, Intel drivers and libs, harfbuzz, libdav1d, libdovi, libdrm, liblc3, libpng, mesa, openjpeg, shaderc, svt-av1, vulkan-sdk, vvenc and webp.
* **26.11.24:** - Bump libaom, mesa, rist, srt and libx265.
* **07.11.24:** - Bump harfbuzz, Intel drivers and libs, libdav1d, mesa, svtav1, vpx, vulkan sdk and vvenc.
* **05.10.24:** - Add support for libvvenc on aarch64. Bump mesa.
* **30.09.24:** - Bump ffmpeg for 7.1. Add support for libvvenc (amd64 only) and liblc3. Bump libfribidi and libharfbuzz.
* **24.09.24:** - Let ffmpeg terminate gracefully on docker stop/restart. Bump libharfbuzz, libpng, mesa, shaderc and libx265.
* **09.09.24:** - Add libzmq.
* **31.08.24:** - Bump libaom, libdrm, libvpl, mesa and svtav1. Enable nvdec/nvenc on arm64 (untested).
* **17.08.24:** - Bump ffmpeg, freetype, libdovi and mesa.
* **14.08.24:** - Add SRT and libRIST.
* **01.08.24:** - Add libdav1d. Bump libharfbuzz, various Intel drivers and libs, libass, libdrm, libplacebo, libva, mesa, svtav1, and vulkan sdk.
* **21.06.24:** - Bump mesa and libaom. Update lib path for rav1e.
* **08.06.24:** - Bump ffmpeg, fribidi, libdrm, mesa and vpx.
* **26.05.24:** - Rebase to Ubuntu Noble. Bump libass, libharfbuzz and vulkan-sdk.
* **22.05.24:** - Bump Mesa to 24.1.0.
* **20.05.24:** - Bump libsvtav1.
* **09.05.24:** - Bump libaom, fribidi, kvazaar, various Intel drivers and libs, Mesa, opus, shaderc, webp and x265.
* **11.04.24:** - Explicitly disable libdrm on aarch64, add new lib `libxcb-shm0`. Add quick test at the end of build.
* **10.04.24:** - Compile ffmpeg with `libfribidi`, `libharfbuzz` and `libfontconfig`, compile libharfbuzz.
* **05.04.24:** - Bump ffmpeg to 7.0, bump libdovi, libva, mesa and vulkan-sdk.
* **16.03.24:** - Bump libaom, mesa, openjpeg, opus, shaderc and svtav1.
* **11.02.24:** - Add Zimg support.
* **09.02.24:** - Bump ffmpeg to 6.1.1, bump other deps.
* **08.02.24:** - Enable cuda-llvm, clean up rustc.
* **01.02.24:** - Bump Mesa to v24.
* **21.01.24:** - Add alsa support.
* **18.01.24:** - Let the wrapper pass the ffmpeg exit code to docker run. Bump various libs.
* **01.01.24:** - Add rav1e support. Bump libaom, fdkaac, libdrm, libvmaf, libvpl, mesa and svt-av1.
* **06.12.23:** - Add libplacebo and libdobi to x86_64.
* **05.12.23:** - Bump Mesa. Fix vdpau. Fix AMD VAAPI.
* **25.11.23:** - Compile Mesa from source. Add proper Vulkan support (env var `ENABLE_VULKAN=true` no longer needed)(tested with Intel).
* **22.11.23:** - Add shaderc and (preliminary) Vulkan support (via env var `ENABLE_VULKAN=true`) to x86_64. Bump Intel drivers and other libs.
* **13.11.23:** - Bump FFmpeg to 6.1.
* **02.11.23:** - Remove `--enable-small` from ffmpeg build options to add back some features.
* **05.10.23:** - Add support for SVT-AV1. Update various libraries. * **05.10.23:** - Add support for SVT-AV1. Update various libraries.
* **16.08.23:** - Added support for WebP formats. * **16.08.23:** - Added support for WebP formats.
* **11.08.23:** - Add optional i965 driver for gen5+ support. * **11.08.23:** - Add optional i965 driver for gen5+ support.

View File

@ -13,13 +13,14 @@ set_uidgid () {
run_ffmpeg () { run_ffmpeg () {
# we do not have input file or it does not exist on disk just run as root # we do not have input file or it does not exist on disk just run as root
if [ -z ${INPUT_FILE+x} ] || [ ! -f "${INPUT_FILE}" ]; then if [ -z ${INPUT_FILE+x} ] || [ ! -f "${INPUT_FILE}" ]; then
exec /usr/local/bin/ffmpeg "${FULL_ARGS[@]}" /usr/local/bin/ffmpeg "${FULL_ARGS[@]}"
# we found the input file run as abc # we found the input file run as abc
else else
set_uidgid set_uidgid
exec s6-setuidgid abc \ s6-setuidgid abc \
/usr/local/bin/ffmpeg "${FULL_ARGS[@]}" /usr/local/bin/ffmpeg "${FULL_ARGS[@]}"
fi fi
exit 0
} }
# look for input file value # look for input file value
@ -35,7 +36,7 @@ do
done done
## hardware support ## ## hardware support ##
FILES=$(find /dev/dri /dev/dvb /dev/snd -type c -print 2>/dev/null) FILES=$(find /dev/dri /dev/dvb -type c -print 2>/dev/null)
for i in $FILES for i in $FILES
do do