Download and launch Bonita UI Builder
For Subscription editions only. |
Prerequisites
-
Docker installed
-
2024.3 Bonita (or any later version) started on the local machine
To use Bonita UI Builder, a Bonita runtime running on your local machine is required (it may be a Bonita Studio or a standalone Bonita runtime).
Create the Docker environment
The Docker environment is composed of two containers:
-
Bonita UI Builder: the core service that runs a low-code application platform based on Appsmith.
-
Bonita UI Proxy: a reverse proxy to establish communications between Bonita UI Builder and a Bonita Runtime.
First, create a docker-compose.yml
file with the content below:
# Use for running a bonita-ui-builder during development.
services:
bonita-ui-builder:
image: ${IMAGE_NAME:-bonitasoft.jfrog.io/docker/bonita-ui-builder:latest}
container_name: bonita-ui-builder
environment:
BONITA_API_URL: http://host.docker.internal:${BONITA_RUNTIME_PORT:-8080}/bonita/API
ports:
- "8090:80"
# Mount a volume to store persistent data
volumes:
- ./stacks:/appsmith-stacks
extra_hosts:
- "host.docker.internal:host-gateway"
# A reverse proxy used to communicate between Bonita UI Builder and a Bonita Runtime
bonita-ui-proxy:
image: ${IMAGE_NAME:-bonitasoft.jfrog.io/docker/bonita-ui-proxy:latest}
ports:
- 443:443
- 80:80
extra_hosts:
- "host.docker.internal:host-gateway"
A volume is mounted to the local folder |
You can override and configure all environment variables in the |
Download and launch the Docker image
Bonita UI Builder Docker image is located in the Bonita Artifact Repository.
Once you got the credentials, you have to authenticate with the docker login
command:
docker login bonitasoft.jfrog.io
Run the following command to launch Bonita UI Builder:
docker compose up -d
Then, you can access Bonita UI Builder at http://localhost
.
The first time, the initialisation can take a while, a waiting message appears. Reload the page if the page is blank. |
By default, the database volumes are not persisted. Make sure you export your applications as .json files before running the command:
If you do not want to lose your data, you can use instead these commands to stop and restart Bonita UI Builder:
|
If encountering issues with Windows and WSL, check our FAQ . |