0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

KeyCloakをarm64環境のDockerで動かす

Posted at

GitHubからDockerfileを取得

使用するリポジトリは以下

$ git clone https://github.com/carlosedp/keycloak-containers.git

Dockerfileを修正

利用するKeyCloakのバージョンを変更

-ENV KEYCLOAK_VERSION 12.0.1
+ENV KEYCLOAK_VERSION 15.0.2

Docker build

$ docker build -t kc:v15 .

Docker Run

$ docker run -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin -p 8120:8080 -d -it kc:v15

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?