[Triage] Container with tag v2025.9.26 are not available
The newest containers are not available. The CI release jobs failed: https://github.com/kieraneglin/pinchflat/actions/runs/18069350058
See this comment from the author: https://github.com/kieraneglin/pinchflat/issues/800#issuecomment-3341935103
The latest tag has the 2025.9.26 version, but only for amd64: https://github.com/kieraneglin/pinchflat/pkgs/container/pinchflat/528220864?tag=latest . You can pin to the hash using pinchflat@sha256:01b4f98aabaf3f5fe394213f7a32578c9e84e42080f52e2f8334021a4473b202 if you want
I am seeing more and more download errors where it says that it requires a JS runtime, which AFAIK only the newest version made available. So this will become a critical issue soon.
My experience also matches with this announcement: https://github.com/yt-dlp/yt-dlp/issues/15012
Can we do something about this? Does anyone know what the issue is with the arm image?
I will build the image myself on my raspi for the time being.
really weird but this docker registry is a thing: https://hub.docker.com/r/keglin/pinchflat
Im unsure if it's a real thing though and am afraid to use/try it 😕
so one thing I ran into: I was able to build a working image but I had to change the selfhosted.Dockerfile here
the URL used to install yt-dlp for my armv7 rpi node was https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp
so my changes:
- for now I updated all references to
yt-dlpto be that URL - for the ffmpeg installation, I replaced the default URL to that of my platform (too lazy to add
--argto my build command)
then ran:
# if you're running this on docker, make sure to change the tag to something that you prefer!
podman build \
--tag my-private-k8s-registry.io/ghcr.io/kieraneglin/pinchflat:latest \
-f docker/selfhosted.Dockerfile .
I found that URL specifically by following this wiki. I'm unsure if that download link magically accounts for whatever platform your build is running on (e.g.: armv7, arm64, etc)
hopefully this helps anyone out, and/or results in a fix!