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:
- Local RADIUS Docker container
- Local TACACS+ Docker container
- Remote Private Access Docker container
- DHCP forwarder Docker container
- On-premises SIEM integration Docker container
- UniFi captive portal Docker container
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 down 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
-