Skip to content

Commit 276925e

Browse files
committed
Sync documentation of main branch
1 parent 71b4607 commit 276925e

6 files changed

+7
-7
lines changed

_versions/main/guides/scheduler-reference.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Property Expressions.
156156
.Time Zone Configuration Property Example
157157
[source,java]
158158
----
159-
@Scheduled(cron = "0 15 10 * * ?", timeZone = "{myMethod.timeZone}")
159+
@Scheduled(cron = "0 15 10 * * ?", timeZone = "${myMethod.timeZone}")
160160
void myMethod() { }
161161
----
162162

_versions/main/guides/security-keycloak-authorization.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ To start a Keycloak server, use the following Docker command:
298298
[source,bash,subs=attributes+]
299299
----
300300
docker run --name keycloak \
301-
-e KEYCLOAK_ADMIN=admin \
302-
-e KEYCLOAK_ADMIN_PASSWORD=admin \
301+
-e KC_BOOTSTRAP_ADMIN_USERNAME=admin \
302+
-e KC_BOOTSTRAP_ADMIN_PASSWORD=admin \
303303
-p 8543:8443 \
304304
-v "$(pwd)"/config/keycloak-keystore.jks:/etc/keycloak-keystore.jks \
305305
quay.io/keycloak/keycloak:{keycloak.version} \ <1>

_versions/main/guides/security-oidc-bearer-token-authentication-tutorial.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ For more information, see the <<bearer-token-tutorial-keycloak-dev-mode>> sectio
214214
====
215215
[source,bash,subs=attributes+]
216216
----
217-
docker run --name keycloak -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
217+
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
218218
----
219219
====
220220
* Where the `keycloak.version` is set to version `26.0.7` or later.

_versions/main/guides/security-oidc-code-flow-authentication-tutorial.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ To start a Keycloak server, use Docker and run the following command:
198198

199199
[source,bash,subs=attributes+]
200200
----
201-
docker run --name keycloak -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
201+
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
202202
----
203203

204204
where `keycloak.version` is set to `26.0.7` or later.

_versions/main/guides/security-openid-connect-client.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ To start a Keycloak Server, you can use Docker and just run the following comman
502502

503503
[source,bash,subs=attributes+]
504504
----
505-
docker run --name keycloak -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
505+
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
506506
----
507507

508508
Set `{keycloak.version}` to `26.0.7` or later.

_versions/main/guides/security-openid-connect-multitenancy.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ To start a Keycloak server, you can use Docker and run the following command:
343343

344344
[source,bash,subs=attributes+]
345345
----
346-
docker run --name keycloak -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
346+
docker run --name keycloak -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -p 8180:8080 quay.io/keycloak/keycloak:{keycloak.version} start-dev
347347
----
348348

349349
where `keycloak.version` is set to `26.0.7` or higher.

0 commit comments

Comments
 (0)