CloudBeaver Community deployment from docker image
Table of contents
CloudBeaver is a web application, that requires server deployment.
Requirements
- Install Docker 20.10 or higher
amd64 or arm64 system.
Installation
To install the latest version of CloudBeaver use the following script:
docker pull dbeaver/cloudbeaver:latest
Running
To run CloudBeaver in the terminal:
docker run --name cloudbeaver --rm -ti -p 8080:8978 -v /opt/cloudbeaver/workspace dbeaver/cloudbeaver:latest
Then switch to the browser and open http://localhost:8080/
Daemon mode
Add the following parameters:
-d --restart unless-stopped
More information can be found on the Run Docker Container page