Update within a Docker container

This article describes the process of updating Xopero ONE Management Service within a Docker container on QNAP NAS, Synology NAS and Windows.

Guides for updating Xopero ONE Management Service within a Docker container explain how to perform updates and manage the service efficiently.


Updating the Management Service

The below guides apply to Xopero ONE Management Service on-prem deployment models.

Update process

  1. Download the new image and remove the old container using the following command:

docker pull xopero/xopero-one-service:latest
docker stop xone && docker rm xone
  1. Next, create the new container with the agent using the following command:

docker run -d \
  --name <container_name> \
  -p <xms_port>:80 \
  -v <database_location_outside_container>:/app/Xopero \
  xopero/xopero-one-service
Running the container with the Xopero ONE Management Service within

Update validation

Verify that the update was successful — log into the Xopero ONE panel through a web browser, wait for the device status to show online, and confirm that all settings (plans, storages, devices, and others) are intact.

Last updated