CloudBeaver Documentation

DOWNLOAD pdf

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:

  1. Update the value of CLOUDBEAVER_VERSION_TAG in your .env file to the desired version. If using the latest tag, skip this step.

  2. Pull the latest changes for cloudbeaver-deploy (Optional):

    git pull
    
  3. Pull new Docker images:

    docker-compose pull
    
  4. Restart the cluster:

    docker-compose up -d
    

Update Docker image

To update using a standalone Docker image:

  1. Stop and remove the existing container:

    docker stop cloudbeaver-ee
    docker rm cloudbeaver-ee
    
  2. Pull the new image:

    docker pull dbeaver/cloudbeaver-ee:latest
    
  3. 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