Skip to content
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

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

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?

Copy link
Contributor Author

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.

Copy link
Contributor

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

Copy link
Contributor Author

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.


## Launch container using docker command

Pre-requisites: Docker
Expand Down Expand Up @@ -89,6 +91,8 @@ You can place all of these in a batch script for a 1 click or single command upd
$ docker stop my_actual_budget && docker container rm my_actual_budget && docker run --pull=always --restart=unless-stopped -d -p 5006:5006 -v YOUR/PATH/TO/DATA:/data --name my_actual_budget actualbudget/actual-server:latest
```

> Note: After updating the server container, the client will automatically be updated. A manual page hard reload may be required to see the changes.

## Test connection within local network

On another PC within the local network connect to http://_serverIP_:_chosenPort_
Loading