Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Keycloak

Keycloak Docker stack

Requirement

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

Build local image

$ docker build -t local/keycloak:latest -f .docker/Dockerfile .

or you can use the Makefile:

$ make build-image

Start

To start the keycloak docker stack:

$ docker stack deploy -c docker-compose.yml keycloak

or you can use the Makefile:

$ make deploy

Stop

To stop the keycloak docker stack:

$ docker stack rm keycloak

or you can use the Makefile:

$ make undeploy