How to update launcher based Livebook?

Hello,

I created a Livebook instance using the fly.io launcher. Now a new version of Livebook got released and I am wondering how I would update my instance to the newest version.

Phillipp

You should be able to run:

fly image show -a <livebook-app>
fly image update -a <livebook-app>

That’ll get you a recent version, I think. Let us know if it doesn’t. :slight_smile:

@kurt Hey, only got to test it now. That did the trick.

The show command already told me that there is an update available. Maybe in the future, the web ui could provide an update button for certain apps (might not make sense for bigger deployments I assume).

1 Like

Error image is not eligible for automated image updates

Unfortunately not works for 0.8.1 → 0.9.0, maybe didn’t support yet.

Hi @ljzn, Livebook recently changed from Docker Hub to GHCR and I can see that Docker Hub does not have 0.9.0.

Currently, livebooks launched will be from ghcr and I’m just shipping right now a change that will make new books from Livebook · Launch on Fly.io 0.9.0

Also, here’s how I updated my book:

flyctl deploy -a YOURAPPNAME --image ghcr.io/livebook-dev/livebook:0.9.0
2 Likes