Pulling the Container

Hi.

I’ve deployed a container here a while, lost the source code (whoops) and now it’s consistently restarting every boot since a health check is failing (so I can’t just SSH in and grab it).

any way to pull the docker image from fly or disable the health check?

Thanks.

Just realized my health check is about 10 seconds, so I managed to grab what I needed before it crashed.

Still would be curious if pulling images is possible though.

Glad you got things situated!

If you use fly auth docker, you can then pull your image down with docker pull registry.fly.io/app-name:tag, which you can find with fly image show -a app-name

As an aside, you can remove health checks entirely in your fly.toml, and you can grab the fly.toml for an app with fly config display -a app-name .

1 Like