CloudBeaver Enterprise Update
Update CloudBeaver Enterprise
Keep your CloudBeaver Enterprise server up to date to access the latest features, improvements, and security patches.
Warning: Always backup your workspace before updating. Downgrades are not supported.
Tip: For detailed instructions, see the Docker CLI Documentation and Docker Compose Documentation.
Update steps
Update Docker Compose
To update a cluster, managed with Docker Compose:
Update the value of
CLOUDBEAVER_VERSION_TAG
in your.env
file to the desired version. If using thelatest
tag, skip this step.Pull the latest changes for
cloudbeaver-deploy
(Optional):git pull
Pull new Docker images:
docker-compose pull
Restart the cluster:
docker-compose up -d
Update Docker image
To update using a standalone Docker image:
Stop and remove the existing container:
docker stop cloudbeaver-ee docker rm cloudbeaver-ee
Pull the new image:
docker pull dbeaver/cloudbeaver-ee:latest
- Run the updated container:
docker run --name cloudbeaver-ee -d --restart unless-stopped -p 8978:8978 -v /var/cloudbeaver-ee/workspace:/opt/cloudbeaver/workspace dbeaver/cloudbeaver-ee:latest