-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: update download-and-launch.adoc #2747
Changes from all commits
9ea695b
42498ce
06cccfa
4aab036
6572e2f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,15 @@ | |
For Subscription editions only. | ||
==== | ||
|
||
== Pre-requisites | ||
* Docker installed | ||
* Nginx installed | ||
|
||
|
||
== Create the docker environment | ||
|
||
- Create a `docker-compose.yml` file with the content below: | ||
|
||
(_To update with the final content_) | ||
|
||
.Click to see the docker compose file | ||
[%collapsible] | ||
==== | ||
|
@@ -53,8 +56,6 @@ services: | |
|
||
- Create a `nginx` configuration file `nginx.conf` with the content below: | ||
|
||
(_To update with the final content_) | ||
|
||
.Click to see the nginx configuration file | ||
[%collapsible] | ||
==== | ||
|
@@ -175,7 +176,7 @@ Run the following command to launch Bonita UI Builder: | |
docker compose up -d | ||
---- | ||
|
||
Then, you can access Bonita UI Builder at `http://localhost`. | ||
Then, you can access Bonita UI Builder at `http://localhost:8090`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the demo, the reverse proxy was handling the redirection to the proper port. Did it changed ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When I tested it, it didn't redirect me properly to the right URL, hence this change There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK...it just worked now 🤔 |
||
|
||
[NOTE] | ||
==== | ||
|
@@ -189,7 +190,7 @@ To use Bonita UI Builder, a Bonita runtime running on your local machine is requ | |
Using the provided docker and nginx files above without modification, make sure that the Bonita runtime is accessible at `http://localhost:8080`. | ||
|
||
[TIP] | ||
You can change the Bonita runtime port by updating the `docker-compose.yml` file and the `nginx.conf` file. | ||
You can change the Bonita runtime port by a port different than 8080. To do so, change the value `BONITA_API_URL` in the `docker-compose.yml` file and changing the value of `server host.docker.internal` in the `nginx.conf` file. | ||
|
||
== Authenticate with the UI Builder | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't nginx setup using a Docker image ?