Skip to content

Commit f14c49c

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

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

DEVELOPMENT.md

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

6767
> **_NOTE:_** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
6868
69+
### Application depends on a running KeyCloak instance for dev mode
70+
71+
There is a KeyCloak instance need to be running on port 8089 by default in dev mode.
72+
See [Security](README.md#security) for default values, if custom keycloak is used.
73+
74+
There is a preconfigured keycloak instance available in
75+
the [CoMPAS Deployment Repository](https://github.com/com-pas/compas-deployment). This repository can be cloned and
76+
when going to this directory the following command can be executed to create a local Docker Image with configuration.
77+
78+
```shell
79+
cd <CoMPAS Deployment Repository Directory>/compas/keycloak
80+
docker build -t compas_keycloak .
81+
```
82+
83+
There is now a Docker Image `compas_keycloak` created that can be started using the following command
84+
85+
```shell
86+
docker run --rm --name compas_keycloak \
87+
-p 8089:8080
88+
-d compas_keycloak:latest
89+
```
90+
6991
## Packaging and running the application
7092

7193
The application can be packaged using:

0 commit comments

Comments
 (0)