diff --git a/website/docs/how-to/how-to-use-custom-strategies.md b/website/docs/how-to/how-to-use-custom-strategies.md index 907e4d73db..13a0b65270 100644 --- a/website/docs/how-to/how-to-use-custom-strategies.md +++ b/website/docs/how-to/how-to-use-custom-strategies.md @@ -117,12 +117,12 @@ Strategies are stored in separate JavaScript files and loaded into the container ``` shell docker run --name unleash-proxy --pull=always \ - -e UNLEASH_PROXY_SECRETS=some-secret \ - -e UNLEASH_URL='http://unleash:4242/api/' \ - -e UNLEASH_API_TOKEN=${API_TOKEN} \ - # highlight-start - -e UNLEASH_CUSTOM_STRATEGIES_FILE=/strategies/timestamp.js \ - --mount type=bind,source="$(pwd)"/strategies,target=/strategies \ - # highlight-end - -p 3000:3000 --network unleash unleashorg/unleash-proxy + -e UNLEASH_PROXY_SECRETS=some-secret \ + -e UNLEASH_URL='http://unleash:4242/api/' \ + -e UNLEASH_API_TOKEN=${API_TOKEN} \ + # highlight-start + -e UNLEASH_CUSTOM_STRATEGIES_FILE=/strategies/timestamp.js \ + --mount type=bind,source="$(pwd)"/strategies,target=/strategies \ + # highlight-end + -p 3000:3000 --network unleash unleashorg/unleash-proxy ```