Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SSO] Add keycloak docker service to mock SSO #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,20 @@ services:
PHPLDAPADMIN_HTTPS: "false"
ports:
- "8888:80"
keycloak:
image: quay.io/keycloak/keycloak:23.0.7
command: start-dev --import-realm
ports:
- "${KEYCLOAK_PORT:-8080}:8080"
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: change_me
KEYCLOAK_LOGLEVEL: DEBUG
KEYCLOAK_LOG_FILE: /var/log/keycloak.log
AD_SERVER: "openldap"
AD_BIND_UN: "cn=admin,dc=dms,dc=local"
AD_BIND_PW: "Adm1n!"
APP_ROOT_URL: "http://localhost:8000"
DUMMY_CLIENT_SECRET: "dummy-secret-for-dev-mode"
volumes:
- ./keycloak/data/import:/opt/keycloak/data/import
Loading