Forked from davidovs/docker-compose-for-keycloak-h2-import-realm.yml
Created
March 17, 2022 12:13
-
-
Save CesarChaMal/d11e03bc32d5245c46372cda6962742d to your computer and use it in GitHub Desktop.
Revisions
-
davidovs created this gist
Jul 29, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ version: '3' networks: default: services: keycloak: image: jboss/keycloak restart: always environment: KEYCLOAK_VERSION: 6.0.1 KEYCLOAK_USER: admin KEYCLOAK_PASSWORD: admin KEYCLOAK_IMPORT: /tmp/realm-export.json volumes: - ./keycloak/realm-export.json:/tmp/realm-export.json ports: - "8180:8080"