# Update Psono Admin Client
Update guide of the Psono Admin Client
# Rolling-release security support
Psono is maintained as a rolling-release product. All current bug fixes and security corrections are delivered through the latest generally available release. Earlier releases and release branches are not maintained separately and do not receive backported fixes. You should therefore keep your Psono installation current by following the published update procedure. Historical releases may remain available for rollback or archival purposes, but are unsupported and may contain known or subsequently discovered vulnerabilities.
# Update with Docker
Update the docker image
docker pull psono/psono-admin-client:latestStop old psono-admin-client
docker stop psono-admin-clientStart new psono-admin-client
docker run --name psono-admin-client-new \ -v /opt/docker/psono-client/config.json:/usr/share/nginx/html/portal/config.json \ -d --restart=unless-stopped -p 10102:80 psono/psono-admin-client:latestCleanup
If everything works you can cleanup your containers with the following commands:
docker rm psono-admin-client docker rename psono-admin-client-new psono-admin-client
If anything fails you should be able to start the old docker container again.
# Update without Docker
The admin client is a pure html / js website, that can be hosted with any webserver and has zero dependencies.
Download the webclient artifact
Visit the following url and download the webclient:
get.psono.com/psono/psono-admin-client/latest/adminclient.zip (opens new window)
Backup htdocs/portal folder
Before you replace any files you should backup your htdocs/portal folder
Install webclient
Unpack the webclient into the htdocs/portal folder of your webserver.
Restore
config.jsonCopy the old
config.jsonand replace the one in the htdocs/portal folderAdjust permissions
chmod -R 644 htdocs/portal
If anything fails you should be able to restore your admin portal restoring the files from the backuped folder.