Skip to content
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

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions modules/applications/pages/download-and-launch.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
For Subscription editions only.
====

== Pre-requisites
* Docker installed
* Nginx installed
Copy link
Member

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 ?



== 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]
====
Expand Down Expand Up @@ -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]
====
Expand Down Expand Up @@ -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`.
Copy link
Member

Choose a reason for hiding this comment

The 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 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK...it just worked now 🤔


[NOTE]
====
Expand All @@ -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

Expand Down