From ccbf09398e13be48dc4fdecf06b1e3e0291fdb60 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Mon, 16 Sep 2024 16:56:47 +0400 Subject: [PATCH] docs: minor rewriting --- docs/integrations/platforms/docker.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/integrations/platforms/docker.mdx b/docs/integrations/platforms/docker.mdx index 57ffd71c9..a33c83ba9 100644 --- a/docs/integrations/platforms/docker.mdx +++ b/docs/integrations/platforms/docker.mdx @@ -93,13 +93,13 @@ The drawback of the previous method is that you would have to generate the `INFI Create a shell script to obtain an access token for the machine identity: - ```bash + ```bash script.sh #!/bin/sh export INFISICAL_TOKEN=$(infisical login --method=universal-auth --client-id=$INFISICAL_MACHINE_CLIENT_ID --client-secret=$INFISICAL_MACHINE_CLIENT_SECRET --plain --silent) exec infisical run --token $INFISICAL_TOKEN --projectId $PROJECT_ID --env $INFISICAL_SECRET_ENV --domain $INFISICAL_API_URL -- ``` - > **Note:** The access token has a limited lifespan. Use the `infisical token renew` command to renew it when necessary. + > **Note:** The access token has a limited lifespan. Use the [infisical token renew](/cli/commands/token) CLI command to renew it when necessary. Caution: Implementing this directly in your Dockerfile presents two key issues: @@ -109,7 +109,7 @@ The drawback of the previous method is that you would have to generate the `INFI - Grant the Infisical CLI in your Docker container access to the access token. This allows the CLI to fetch and inject secrets into your application. + Grant the Infisical CLI access to the access token, inside your Docker container. This allows the CLI to fetch and inject secrets into your application. Add the following line to your Dockerfile: