Last active
January 8, 2020 16:07
-
-
Save agniswarm/4067883affdee1e4c5131e55a708b828 to your computer and use it in GitHub Desktop.
run keycloak container with postgres
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' | |
services: | |
keycloak: | |
container_name: keycloak | |
image: jboss/keycloak | |
environment: | |
KEYCLOAK_USER: admin | |
KEYCLOAK_PASSWORD: admin | |
DB_VENDOR: postgres | |
DB_ADDR: $POSTGRES_ADDR | |
DB_USER: $POSTGRES_USER | |
DB_PASSWORD: $POSTGRES_PWD | |
PROXY_ADDRESS_FORWARDING: 'true' | |
ports: | |
- 8080:8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment