Upgrade Bindplane Server in Docker Compose
Steps for upgrading the Bindplane Server when deployed via Docker, including image management
Bindplane Server can be upgraded by updating the image version tag in your docker-compose.yaml file.
# ...
services:
bindplane:
image: ghcr.io/observiq/bindplane-ee:1.87.0
# ...Once the new image tag is updated in the docker-compose.yaml, restart your Docker Compose services.
docker compose down
docker compose up -dLast updated
Was this helpful?