Updating Xopero ONE Agent Running Xopero ONE Agent On Docker

The only way to update an agent installed in a container is to remove the previous version and create a new one.

Download new image and remove the old container with the agent using the command:

docker pull xopero/gitprotect-agent:latest
docker stop xopero-agent && docker rm xopero-agent

And now create the new container with agent:

docker run -d \
  --name xopero-agent \
  -e ManagementServiceUrl="<your_gitprotect_service_URL>" \
  -e XoperoOverriddenHostName="<device_name>" \
  -v /opt/gitprotect-agent/data:/app/Xopero \
  --restart unless-stopped \
  xopero/gitprotect-agent:latest

Last updated