Keycloak Docker stack
You must have docker in swarm mode to run this docker stack.
This demo stack require "Traefik" to be running on your host. Follow the documentation here
$ docker build -t local/keycloak:latest -f .docker/Dockerfile .
or you can use the Makefile:
$ make build-image
To start the keycloak docker stack:
$ docker stack deploy -c docker-compose.yml keycloak
or you can use the Makefile:
$ make deploy
To stop the keycloak docker stack:
$ docker stack rm keycloak
or you can use the Makefile:
$ make undeploy