Skip to content

Commit

Permalink
doc: docker fails to parse quotes in env value (#2345)
Browse files Browse the repository at this point in the history
Docker failed to parse quotes when I set workspace_token with quotes. And took me some time to figure this out. While this is a valid yml, it seems to be a quirk with docker. Explicitly mentioning this info should help others avoid wasting time on this petty thing.
  • Loading branch information
gitcommitshow committed Sep 15, 2022
1 parent 12d3e59 commit 67584f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rudder-docker.yml
Expand Up @@ -26,7 +26,7 @@ services:
- JOBS_DB_PASSWORD=password
- DEST_TRANSFORM_URL=http://d-transformer:9090
- CONFIG_BACKEND_URL=https://api.rudderlabs.com
- WORKSPACE_TOKEN=<your_workspace_token>
- WORKSPACE_TOKEN=<your_workspace_token> # Must be written without quotes e.g. WORKSPACE_TOKEN=20TokEO34NWitou2t3quO8teS7
- STATSD_SERVER_URL=metrics-exporter:9125
# - RSERVER_BACKEND_CONFIG_CONFIG_FROM_FILE=true
# - RSERVER_BACKEND_CONFIG_CONFIG_JSONPATH=<workspace_config_filepath_in_container> # For ex., /etc/rudderstack/workspaceConfig.json
Expand All @@ -51,4 +51,4 @@ services:
image:
prom/statsd-exporter:v0.22.4
ports:
- "9102:9102"
- "9102:9102"

0 comments on commit 67584f7

Please sign in to comment.