-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use keycloak 16.1.1 and add docs about mac m1
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,19 @@ Use `down` if you want to stop the Keycloak server. | |
docker-compose down | ||
``` | ||
|
||
### Mac M1 | ||
|
||
Using the default Docker image `jboss/keycloak:16.1.1` does not work. It is easy to build it yourself. | ||
|
||
```bash | ||
git clone [email protected]:keycloak/keycloak-containers.git | ||
cd keycloak-containers/server | ||
git checkout 16.1.1 | ||
docker build -t jboss/keycloak:16.1.1 . | ||
``` | ||
|
||
From https://github.com/docker/for-mac/issues/5310#issuecomment-877653653. | ||
|
||
## Architecture | ||
|
||
The main entry point is `keycloak.go`. This is where the Keycloak instance is created. It all starts in this file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters