mirror of
https://codeberg.org/pfzetto/axum-oidc
synced 2025-12-09 22:55:17 +01:00
example keycloak added
This commit is contained in:
parent
a7b76ace76
commit
57f4e76281
5 changed files with 43 additions and 0 deletions
15
examples/basic/keycloak_example/compose.yml
Normal file
15
examples/basic/keycloak_example/compose.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
# THIS SETUP IS PNLY FOR TESTING PRUPOSES, PLEASE DO NOT USE IT IN PRODUCTION
|
||||
keycloak:
|
||||
image: quay.io/keycloak/keycloak:19.0.2
|
||||
command: start-dev
|
||||
ports:
|
||||
- "8989:8080"
|
||||
environment:
|
||||
- KEYCLOAK_ADMIN=admin
|
||||
- KEYCLOAK_ADMIN_PASSWORD=admin
|
||||
user: "${UID}:${GID}"
|
||||
volumes:
|
||||
- ./keycloak_data:/opt/keycloak/data/h2/:z
|
||||
Loading…
Add table
Add a link
Reference in a new issue