From 55dcdc7b52d6ee6c9b43bc35c31a0a6f2f592fa8 Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Thu, 19 Sep 2024 11:57:50 +0100 Subject: [PATCH] Add self-hosting image update instructions --- docs/open-source-self-hosting.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/open-source-self-hosting.mdx b/docs/open-source-self-hosting.mdx index e378d1688..44f3bea51 100644 --- a/docs/open-source-self-hosting.mdx +++ b/docs/open-source-self-hosting.mdx @@ -308,6 +308,7 @@ If you're coming from the beta CLI package images, you will need to: - **Switch branches.** We moved back to main. Run `git checkout main` in your docker repo. - **Pull in updates.** We've added a new container for [Electric](https://github.com/electric-sql/electric) and made some other improvements. Run `git pull` to get the latest updates. - **Apply your changes.** If you stashed your changes, apply them with `git stash pop`. +- **Update your images.** We've also published new images. Run `./update.sh` to pull them. - **Restart all services.** Run `./stop.sh && ./start.sh` and you're good to go. In summary, run this wherever you cloned the docker repo: @@ -323,7 +324,8 @@ git pull # if you stashed your changes git stash pop -# restart your services +# update and restart your services +./update.sh ./stop.sh && ./start.sh ```