Upgrading the Edge Agent
To upgrade the Portainer Edge Agent to the latest version, follow the below instructions for your Edge environment.
Always match the agent version to the Portainer Server version. In other words, when you're installing or upgrading to Portainer 2.18.3 make sure all of the agents are also on version 2.18.3.
Before beginning any upgrade, we highly recommend taking a backup of your current Portainer configuration.
Portainer now also has the ability to update Edge Agents on Docker Standalone directly from within the UI.
To upgrade the Portainer Edge Agent on a Docker Standalone platform, you will first need to note the Edge identifier and the Edge key for the Edge environment. To find these values, log into Portainer and click Environments, then click the name of the environment you are updating.
At the top of the page in the Edge information section, you will see the two values you require in the next steps.

Next, on the Edge environment, we need to stop and remove the Edge Agent container.
docker stop portainer_edge_agent
docker rm portainer_edge_agent
We also want to ensure we have the updated version of the container image locally:
docker pull portainer/agent:latest
To deploy the updated Edge Agent, replace the
your-edge-identifier-here
and your-edge-key-here
values in the following command with those you retrieved earlier, then run the command:docker run -d -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/docker/volumes:/var/lib/docker/volumes -v /:/host -v portainer_agent_data:/data --restart always -e EDGE=1 -e EDGE_ID=your-edge-identifier-here -e EDGE_KEY=your-edge-key-here -e EDGE_INSECURE_POLL=1 --name portainer_edge_agent portainer/agent:latest
To upgrade the Portainer Edge Agent on a Docker Swarm environment, run the following commands.
First, to ensure you have the updated container image locally, pull the image:
docker pull portainer/agent:latest
Then, update the service to use the new image version:
docker service update --image portainer/agent:latest --force portainer_edge_agent
To upgrade the Portainer Edge Agent on a Kubernetes environment, you will need to first download an updated YAML manifest, then apply that manifest to your existing environment.
To download the manifest, you can use one of the following commands:
Business Edition
Community Edition
curl -L https://downloads.portainer.io/ee2-18/portainer-agent-edge-k8s.yaml -o portainer-agent-edge-k8s.yaml
curl -L https://downloads.portainer.io/ce2-18/portainer-agent-edge-k8s.yaml -o portainer-agent-edge-k8s.yaml
To apply this manifest to your environment, run the following command:
kubectl apply -f portainer-agent-edge-k8s.yaml
Last modified 20d ago