{"id":19047088,"url":"https://github.com/dbeaver/cloudbeaver-deploy","last_synced_at":"2026-05-10T11:30:20.603Z","repository":{"id":240388627,"uuid":"802500663","full_name":"dbeaver/cloudbeaver-deploy","owner":"dbeaver","description":"CloudBeaver Enterprise deployment","archived":false,"fork":false,"pushed_at":"2024-05-22T13:24:31.000Z","size":8,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-22T14:42:53.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbeaver.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-18T13:22:57.000Z","updated_at":"2024-05-28T15:37:22.433Z","dependencies_parsed_at":"2024-05-22T14:42:45.998Z","dependency_job_id":null,"html_url":"https://github.com/dbeaver/cloudbeaver-deploy","commit_stats":null,"previous_names":["dbeaver/cloudbeaver-deploy"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbeaver%2Fcloudbeaver-deploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbeaver%2Fcloudbeaver-deploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbeaver%2Fcloudbeaver-deploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbeaver%2Fcloudbeaver-deploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbeaver","download_url":"https://codeload.github.com/dbeaver/cloudbeaver-deploy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240104351,"owners_count":19748346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T22:59:04.384Z","updated_at":"2026-05-10T11:30:20.565Z","avatar_url":"https://github.com/dbeaver.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# CloudBeaver Enterprise deployment\n\n### Version 24.3\n\nCloudBeaver Enterprise is a client-server application.\nIt requires server deployment. You can deploy it on a single host (e.g. your local computer) or in a cloud.\n\n## Installation with Docker Compose\n\nIt is the simplest way to install [CloudBeaver Enterprise Edition](https://dbeaver.com/cloudbeaver-enterprise/).  \nAll you need is a Linux, macOS, or Windows machine with Docker.\n\nCloudBeaver can be run in a [single docker container](https://dbeaver.com/docs/cloudbeaver/CloudBeaver-Enterprise-deployment-from-docker-image/).  \nHowever you can use Docker compose for additional product features such as:\n- Load balancing\n- Easy web server (HTTPS) configuration\n\n### System requirements\n- Minimum 4GB RAM\n- Minimum 50GB storage, \u003e 100GB recommended\n- Ubuntu recommended\n- [Docker](https://docs.docker.com/engine/install/ubuntu/) installed. Make sure you have chosen the right OS distro.\n- [docker-compose](https://docs.docker.com/compose/install/) binary installed and added to your PATH variable. Supported versions 2.10 and above\n    - If you install `docker-compose-plugin`, you must use the `docker compose` command instead of `docker-compose`.\n\n### Configuring and starting the CloudBeaver cluster\n1. Clone repository\n   ```sh\n   git clone https://github.com/dbeaver/cloudbeaver-deploy\n   ```\n1. Open the configuration file\n    - Edit the `.env` file to set configuration properties\n    - It is highly recommended to change the default database password in `CLOUDBEAVER_DB_PASSWORD` variable\n1. Start the cluster\n    - `docker-compose up -d` or `docker compose up -d`\n1. Ensure the following TCP ports are available in your network stack\n    - 80/tcp\n    - 443/tcp (for HTTPS access)\n1. Open `http://\u003cdeployment-machine-ip-address\u003e` to access the app. This URL will open the admin panel when the app is first started.\n\n### Stopping the cluster\n`docker-compose down`\n\n### Configuring SSL (HTTPS)\n\nThere are two ways to configure SSL:\n1. You can configure HTTPS automatically in the admin panel.   \n   In this case your server domain address will be `\u003cdeployment-domain\u003e.\u003corganization-domain\u003e.databases.team`.   \n   You can setup organization and deployment domains.\n2. You can issue you own SSL cenrtificate and configure it manually by editing nginx config.\n\n### Podman requirements\n\nas user `root` run following commands before [Configuring and starting the CloudBeaver cluster](#configuring-and-starting-team-edition-cluster):\n1. ```loginctl enable-linger 1000```\n2. ```echo 'net.ipv4.ip_unprivileged_port_start=80' \u003e\u003e /etc/sysctl.conf```\n3. ```sysctl -p```\n\non step 4 of [Configuring and starting the CloudBeaver cluster](#configuring-and-starting-team-edition-cluster) use `podman-compose` tool intead of `docker-compose` and on step 4 define compose file name:\n```\npodman-compose -f podman-compose.yml up -d\n```\nor replace `docker-compose.yml` with `podman-compose.yml` and use `podman-compose` without compose project definition\n\n### Updating the cluster\n1. Replace the value of `CLOUDBEAVER_VERSION_TAG` in `.env` with a preferred version. If you use the tag `latest`, you don't need to do anything during this step.\n2. Pull new docker images: `docker-compose pull` or `docker compose pull`\n3. Restart the cluster: `docker-compose up -d` or `docker compose up -d`\n\n### Older versions:\n- [24.2.0](https://github.com/dbeaver/cloudbeaver-deploy/tree/24.2.0)\n- [24.1.0](https://github.com/dbeaver/cloudbeaver-deploy/tree/24.1.0)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbeaver%2Fcloudbeaver-deploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbeaver%2Fcloudbeaver-deploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbeaver%2Fcloudbeaver-deploy/lists"}