From 6e8a6ce82a5a7d28a0de08e56633e934eca9f9ce Mon Sep 17 00:00:00 2001 From: Andrew Hunter Date: Tue, 27 Jan 2026 14:57:37 -0500 Subject: [PATCH] :memo:(doc) Add -p swich to mkdir Add the -p switch to create the parent directory before we try to cd into it. --- docs/examples/compose/keycloak/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/compose/keycloak/README.md b/docs/examples/compose/keycloak/README.md index ede23d14..dff2d5d6 100644 --- a/docs/examples/compose/keycloak/README.md +++ b/docs/examples/compose/keycloak/README.md @@ -8,7 +8,7 @@ ### Step 1: Prepare your working environment: ```bash -mkdir keycloak/env.d && cd keycloak +mkdir -p keycloak/env.d && cd keycloak curl -o compose.yaml https://raw.githubusercontent.com/suitenumerique/meet/refs/heads/main/docs/examples/compose/keycloak/compose.yaml curl -o env.d/kc_postgresql https://raw.githubusercontent.com/suitenumerique/meet/refs/heads/main/env.d/production.dist/kc_postgresql curl -o env.d/keycloak https://raw.githubusercontent.com/suitenumerique/meet/refs/heads/main/env.d/production.dist/keycloak @@ -89,4 +89,4 @@ Your keycloak instance is now available on https://doc.yourdomain.tld #### Step 3: Get Client Credentials 1. Go to the "Credentials" tab. -2. Copy the client ID (`meet` in this example) and the client secret. \ No newline at end of file +2. Copy the client ID (`meet` in this example) and the client secret.