File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,28 @@ You can run your application in dev mode that enables live coding using:
22
22
23
23
> ** _ NOTE:_ ** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/ .
24
24
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
+
25
47
## Packaging and running the application
26
48
27
49
The application can be packaged using:
You can’t perform that action at this time.
0 commit comments