Skip to content

Commit e75f678

Browse files
author
Dennis Labordus
committed
Updated README.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent 543c381 commit e75f678

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,28 @@ You can run your application in dev mode that enables live coding using:
2222

2323
> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
2424
25+
### Application depends on a running KeyCloak instance for dev mode
26+
27+
There is a KeyCloak instance need to be running on port 8089 by default in dev mode.
28+
See [Security](README.md#security) for default values, if custom keycloak is used.
29+
30+
There is a preconfigured keycloak instance available in
31+
the [CoMPAS Deployment Repository](https://github.com/com-pas/compas-deployment). This repository can be cloned and
32+
when going to this directory the following command can be executed to create a local Docker Image with configuration.
33+
34+
```shell
35+
cd <CoMPAS Deployment Repository Directory>/compas/keycloak
36+
docker build -t compas_keycloak .
37+
```
38+
39+
There is now a Docker Image `compas_keycloak` created that can be started using the following command
40+
41+
```shell
42+
docker run --rm --name compas_keycloak \
43+
-p 8089:8080
44+
-d compas_keycloak:latest
45+
```
46+
2547
## Packaging and running the application
2648

2749
The application can be packaged using:

0 commit comments

Comments
 (0)