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 @@ -66,6 +66,28 @@ You can run your application in dev mode that enables live coding using:
66
66
67
67
> ** _ NOTE:_ ** Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/ .
68
68
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
+
69
91
## Packaging and running the application
70
92
71
93
The application can be packaged using:
You can’t perform that action at this time.
0 commit comments