Skip to content

Instantly share code, notes, and snippets.

View GeorgiyDemo's full-sized avatar

Demka GeorgiyDemo

View GitHub Profile
@davidovs
davidovs / docker-compose-for-keycloak-h2-import-realm.yml
Created July 29, 2019 17:58
Docker-compose for Keycloak (embedded H2 database) with import previously exported realm.
version: '3'
networks:
default:
services:
keycloak:
image: jboss/keycloak
restart: always
environment:
KEYCLOAK_VERSION: 6.0.1
KEYCLOAK_USER: admin
@mstanuch
mstanuch / build-keycloak-docker-image.sh
Created July 11, 2021 08:18
Apple M1 KeyCloak docker image build
#/bin/zsh
# Workaround for https://github.com/docker/for-mac/issues/5310
VERSION=14.0.0 # set version here
cd /tmp
git clone git@github.com:keycloak/keycloak-containers.git
cd keycloak-containers/server
git checkout $VERSION