Skip to content

Instantly share code, notes, and snippets.

@KeenWarrior
Created March 27, 2017 07:35
Show Gist options
  • Save KeenWarrior/151fe054c2f2b9a8b271b6704f392f3a to your computer and use it in GitHub Desktop.
Save KeenWarrior/151fe054c2f2b9a8b271b6704f392f3a to your computer and use it in GitHub Desktop.
keycloak with ssl
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