For initial setup; * Setup auth credentials ``` sudo docker-compose exec keycloak \ /opt/keycloak/bin/kcadm.sh \ config credentials \ --server http://localhost:8080/ \ --user admin \ --password admin \ --realm master \ ``` * Create a new realm for the `spacestation`: ``` sudo docker-compose exec keycloak \ /opt/keycloak/bin/kcadm.sh \ create realms \ -s realm=spacestation \ -s enabled=true \ ``` # Fix up a id bug * https://github.com/hedgedoc/hedgedoc/issues/56 ``` sudo docker-compose exec -T keycloak \ /opt/keycloak/bin/kcadm.sh \ create client-scopes \ -r spacestation \ -f - <