You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on 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:
93
+
on step 4 of [Configuring and starting the CloudBeaver cluster](#configuring-and-starting-the-cloudbeaver-cluster) use `podman-compose` tool intead of `docker-compose` and on step 4 define compose file name:
94
94
```
95
95
podman-compose -f podman-compose.yml up -d
96
96
```
@@ -101,11 +101,49 @@ or replace `docker-compose.yml` with `podman-compose.yml` and use `podman-compos
101
101
2. Pull new docker images: `docker-compose pull` or `docker compose pull`
102
102
3. Restart the cluster: `docker-compose up -d` or `docker compose up -d`
103
103
104
+
## Installation with Docker image
105
+
106
+
CloudBeaver Enterprise can run as a single Docker container:
107
+
108
+
1. Pull Docker image
109
+
110
+
```sh
111
+
docker pull dbeaver/cloudbeaver-ee:latest
112
+
```
113
+
114
+
> You can replace `latest` with a preferred [version tag](https://hub.docker.com/r/dbeaver/cloudbeaver-ee/tags).
115
+
> Use the same tag when running the container.
116
+
117
+
2. Run container
118
+
119
+
```sh
120
+
docker run --name cloudbeaver-ee --rm -ti -p 8978:8978 \
0 commit comments