Skip to content

Commit

Permalink
Clarify Micro example with environment variables (#1043)
Browse files Browse the repository at this point in the history
* Clarify Micro example with environment variables

* Update docs/testing-debugging/snowplow-micro/adding-schemas/index.md
  • Loading branch information
stanch authored Oct 18, 2024
1 parent 33c9e11 commit 3ac998e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ In Snowplow BDP, you can find your Iglu registry URLs and generate API keys [via
The following Docker command will pick up the environment variables and pass them to Micro:

<CodeBlock language="bash">{
`docker run -p 9090:9090 \\
` export MICRO_IGLU_REGISTRY_URL=https://com-example.iglu.snplow.net/api
export MICRO_IGLU_API_KEY=abcdef123456
${"\n"}
docker run -p 9090:9090 \\
-e MICRO_IGLU_REGISTRY_URL \\
-e MICRO_IGLU_API_KEY \\
snowplow/snowplow-micro:${versions.snowplowMicro}`
Expand Down

0 comments on commit 3ac998e

Please sign in to comment.