From 27d2bc0f8a8215c5a63f38e887d9c1116dfb4feb Mon Sep 17 00:00:00 2001 From: Dan Skinner Date: Mon, 8 Jan 2024 09:50:22 +0000 Subject: [PATCH] fix docker command in gatsby example --- examples/js/gatsby/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/js/gatsby/README.md b/examples/js/gatsby/README.md index 9673248ce5..d59d055e62 100644 --- a/examples/js/gatsby/README.md +++ b/examples/js/gatsby/README.md @@ -22,7 +22,7 @@ Once started, it will serve a page at http://localhost:9000 with buttons that ca The project includes a `Dockerfile`. If you're familiar with docker, this is the easiest way to start the example. Otherwise, skip ahead to the [without docker](#without-docker) section. ``` -GATSBY_BUGSNAG_API_KEY=YOUR_API_KEY docker build -t bugsnag-js-example-gatsby . +docker build --build-arg GATSBY_BUGSNAG_API_KEY=YOUR_API_KEY -t bugsnag-js-example-gatsby . docker run -p 9000:9000 -it bugsnag-js-example-gatsby ```