-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add note on how to update client version #612
Conversation
✅ Deploy Preview for actualbudget-website ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
From the docs it isn't clear how to update the client when using docker. This has been asked a few times on the discord channel.
2b18e82
to
db69ce5
Compare
@@ -45,6 +45,8 @@ You can optionally configure the container using environment variables — see t | |||
$ docker-compose pull && docker-compose up -d | |||
``` | |||
|
|||
> Note: After updating the server container, the client will automatically be updated. A manual page hard reload may be required to see the changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A hard reload should no longer be required with the latest client version, it will instead prompt you to update in a notification. Were you seeing different behaviour?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh okay good to know. I just updated server version from v24.11.0 to v25.1.0 and needed to close my firefox browser and then the client was updated. A page refresh wasn't working to update the client.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yeah, 24.11 is the last version that didn't have that feature. Starting with the next updates it should work
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great thanks for the info! I'll go ahead and close this PR.
From the docs it isn't clear how to update
the client when using docker. This has been
asked a few times on the discord channel.