Automatic updates for all Docker containers
The portnox-autoupdate Docker container automatically updates all other Portnox Docker containers to their latest versions, as soon as they are available (with nightly checks). This includes the following containers:
Note: For portnox-autoupdate to work, your firewall must allow communication with the following IP addresses: 20.15.0.121 and
98.71.112.122 on port 443 TCP.
Note: If you choose not to use the portnox-autoupdate Docker container, you will need to completely
remove your existing containers and images, and then redeploy them from the latest image. This process is complex and not
recommended.
-
Find the organization ID:
-
Get an API token from Portnox Cloud:
-
Deploy the portnox-autoupdate Docker container:
-
On Linux:
sudo docker run --restart=always -d --name portnox-autoupdate \ -v /var/run/docker.sock:/var/run/docker.sock \ -v portnox-autoupdate-logs:/app/logs \ -e AUTO_UPDATE_ORG_ID=your_organization_ID \ -e AUTO_UPDATE_PORTNOX_API_TOKEN=your_API_access_token \ portnox/portnox-autoupdate:latest -
On Windows:
docker run --restart=always -d --name portnox-autoupdate ^ -v /var/run/docker.sock:/var/run/docker.sock ^ -v portnox-autoupdate-logs:/app/logs ^ -e AUTO_UPDATE_ORG_ID=your_organization_ID ^ -e AUTO_UPDATE_PORTNOX_API_TOKEN=your_API_access_token ^ portnox/portnox-autoupdate:latest
-

