DEV Community

krishxda
krishxda

Posted on • Updated on

Keycloak Docker setup tutorial

In this post, I will show you how to setup Keycloak using docker.

Just before we get into the tutorial, lets see what are the pre-requisites

  • Docker
  • Portainer (optional I prefer it personally as it will help you managing docker images/containers)
  • Basics of Docker

What is Keycloak?

Keycloak is an open-source identity and access management solution for modern applications and services. Keycloak provides both SAML and OpenID protocol solutions.

Why do we use Keycloak?

Keycloak provides identity and access management, it is also open source. It has several deep features integrated which helps in building easier production grade application by including Keycloak for Authentication and Authorization.

Let's get started

First we need to install Keycloak using docker so fire up the terminal/command prompt and type in the following command

docker run -p 8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin quay.io/keycloak/keycloak:14.0.0

This by default pulls up the specified keycloak version 14.0.0 image from docker and will start the container.

We are setting up the super admin account on docker run command itself using KEYCLOAK_USER and KEYCLOAK_PASSWORD parameters. By default Keycloak runs internally on docker container on port 8080 you can change the host port as you wish.

Once the docker run command executes go to http://localhost:8080/ and you will be greeted with Keycloak page.

Default Keycloak page

Click on Administration Console and login using the credentials which you set for super admin previously. You will be redirected to the Master realm page.

Master realm page

In Keyclock there are hierarchy for segregation of projects and user level access and roles. Realm is like a project say X for which you can define the users, roles, authentication types, and obviously connect you clients/app which you are going to integrate (this may be any app spring-boot, angular, react, node.js, express.js, etc...).

One Major thing to note is that whatever you create inside a realm is only accessible on that specific realm and only account which has access is the super admin

Another super important thing is that Keycloak uses in-memory database for storing the data used by docker container and realm settings, this is not recommended in production as it will not be stable and will delete the data after use. So I have mentioned how to overcome this at last section.

Now you can create new realm by clicking on the dropdown arrow present near Master and click on Add realm and enter a name and click on "Create"

As said earlier realm is like a project and inside it we can define users, roles, clients, etc... I just don't want to get into more details as Keyclock is a vast topic, I have referenced some links below feel free to check those.

Getting-started

Keycloak-documentation

Now that you have explored some basic settings of Keycloak, you realize that you need the data to be stored in Keycloak needs to be persistence and you shouldn't be worrying while restarting the docker container.

Docker compose for Keycloak

I have provided a gist for Docker compose file which uses PostgreSQL as persistence Database for storing all info of Keycloak.

Create any file with the following code and save it as .yml and then fire up the terminal to the location where the file is present and run the command docker compose up. Now the new container will be created and you data will be stored to PostgreSQL DB with a persistence docker volume. (Don't forget to stop the existing docker container which you started earlier)

IF YOU LIKED THE POST, THEN YOU CAN BUY ME MY FIRST COFFEE EVER, THANKS IN ADVANCE.

Buy Me A Coffee

You can know me more by checking out my GitHub profile

GitHub logo krishxda / krishxda

Config files for my GitHub profile.

Oldest comments (0)