pinchflat icon indicating copy to clipboard operation
pinchflat copied to clipboard

[Triage] Container with tag v2025.9.26 are not available

Open Croydon opened this issue 2 months ago • 3 comments

The newest containers are not available. The CI release jobs failed: https://github.com/kieraneglin/pinchflat/actions/runs/18069350058

Croydon avatar Sep 30 '25 05:09 Croydon

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

pheki avatar Oct 02 '25 04:10 pheki

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

Croydon avatar Nov 13 '25 11:11 Croydon

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.

robertkleinschuster avatar Nov 18 '25 08:11 robertkleinschuster

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 😕

chr0n1x avatar Dec 06 '25 05:12 chr0n1x

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:

  1. for now I updated all references to yt-dlp to be that URL
  2. for the ffmpeg installation, I replaced the default URL to that of my platform (too lazy to add --arg to 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!

chr0n1x avatar Dec 06 '25 08:12 chr0n1x