Created
March 27, 2017 07:35
-
-
Save KeenWarrior/151fe054c2f2b9a8b271b6704f392f3a to your computer and use it in GitHub Desktop.
keycloak with ssl
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
db: | |
image: postgres | |
environment: | |
- POSTGRES_DB=keycloak | |
- POSTGRES_USER=keycloak | |
- POSTGRES_PASSWORD=password | |
- POSTGRES_ROOT_PASSWORD=root_password | |
keycloak: | |
image: jboss/keycloak:2.5.5.Final | |
environment: | |
- KEYCLOAK_LOGLEVEL=DEBUG | |
- javax.net.ssl.keyStore=/data/keystore.jks | |
- javax.net.ssl.keyStorePassword=keycloak | |
links: | |
- db:postgres | |
ports: | |
- "8080:8080" | |
- "9999:9990" | |
- "443:8443" | |
volumes: | |
- ./data:/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment