Commit 7cf55c9 suboptimal
committed
1 parent 9e80113 commit 7cf55c9 Copy full SHA for 7cf55c9
File tree 1 file changed +14
-10
lines changed
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ services:
16
16
ports :
17
17
- ' 5432:5432'
18
18
volumes :
19
- - ./local/postgres/data:/var/lib/postgresql/data
19
+ - ./local/postgres/data:/var/lib/postgresql/data
20
20
21
21
api :
22
22
image : openbikesensor-api
@@ -87,17 +87,21 @@ services:
87
87
- start
88
88
89
89
keycloak :
90
- image : jboss /keycloak
90
+ image : quay.io /keycloak/keycloak:20.0
91
91
ports :
92
92
- 3003:8080
93
93
depends_on :
94
94
- postgres
95
95
environment :
96
- KEYCLOAK_USER : admin
97
- KEYCLOAK_PASSWORD : admin
98
- KEYCLOAK_FRONTEND_URL : http://localhost:3003/auth/
99
- DB_VENDOR : postgres
100
- DB_ADDR : postgres
101
- DB_DATABASE : obs
102
- DB_USER : obs
103
- DB_PASSWORD : obs
96
+ KC_HOSTNAME : localhost
97
+ KC_DB_URL : jdbc:postgresql://localhost:5432/obs
98
+ KC_DB : obs
99
+ KC_DB_USERNAME : obs
100
+ KC_DB_PASSWORD : obs
101
+ KEYCLOAK_ADMIN : admin
102
+ KEYCLOAK_ADMIN_PASSWORD : admin
103
+ command :
104
+ - --verbose
105
+ - start-dev
106
+ - --http-relative-path
107
+ - /auth
You can’t perform that action at this time.
0 commit comments