From 3b5fdb678a20a59e700417fa6f29115e2a6d0923 Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Sat, 20 Jul 2019 16:39:43 +0200 Subject: [PATCH] docs(googleCloud): Fix port in docs to correspond to defaults in config (Thanks @Stormert) --- .../connecting-to-image-archives/google-cloud-healthcare.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/latest/connecting-to-image-archives/google-cloud-healthcare.md b/docs/latest/connecting-to-image-archives/google-cloud-healthcare.md index c7d65fce3..6521dae49 100644 --- a/docs/latest/connecting-to-image-archives/google-cloud-healthcare.md +++ b/docs/latest/connecting-to-image-archives/google-cloud-healthcare.md @@ -35,10 +35,10 @@ Images can even be transcoded on the fly if this is desired. - Choose the "Web Application" type - Set up an [OAuth 2.0 Client ID](https://support.google.com/cloud/answer/6158849?hl=en) - - Add your domain (e.g. `http://localhost:3000`) to Authorized JavaScript + - Add your domain (e.g. `http://localhost:5000`) to Authorized JavaScript origins. - Add your domain, plus `callback` (e.g. - `http://localhost:3000/callback`) to Authorized Redirect URIs. + `http://localhost:5000/callback`) to Authorized Redirect URIs. - Save your Client ID for later. - (Optional): Enable Public Datasets that are being hosted by Google: @@ -67,5 +67,5 @@ method to get up and running. Client IDs look like `xyz.apps.googleusercontent.com`. ```bash -docker run --env CLIENT_ID=$CLIENT_ID --publish 3000:80 ohif/viewer:latest +docker run --env CLIENT_ID=$CLIENT_ID --publish 5000:80 ohif/viewer:latest ```