Created
November 3, 2022 17:24
-
-
Save spion/672a12b34980f8203c65bdc0a61327cf to your computer and use it in GitHub Desktop.
two keycloaks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.6' | |
services: | |
keycloak_one: | |
image: quay.io/keycloak/keycloak:16.1 | |
volumes: | |
- keycloak_one_data:/opt/keycloak/data | |
command: start-dev | |
ports: | |
- 8081:8080 | |
environment: | |
KEYCLOAK_ADMIN: admin | |
KEYCLOAK_ADMIN_PASSWORD: change_me | |
keycloak_two: | |
image: quay.io/keycloak/keycloak:16.1 | |
volumes: | |
- keycloak_two_data:/opt/keycloak/data | |
command: start-dev | |
ports: | |
- 8082:8080 | |
environment: | |
KEYCLOAK_ADMIN: admin | |
KEYCLOAK_ADMIN_PASSWORD: change_me | |
volumes: | |
keycloak_one_data: | |
keycloak_two_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment