Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated docs #93

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,12 @@ The above settings assume you have setup secret \<docker-pull-secret\> to access

## Deploy Docker Container

If you have git and Docker installed, you can run following command to deploy _NotifyBC_ Docker container:
If you have Docker installed, you can run following command to deploy _NotifyBC_ Docker container:

```sh
docker run --platform linux/amd64 --rm -dp 3000:3000 ghcr.io/bcgov/notify-bc
# open http://localhost:3000
docker run --platform linux/amd64 --rm --pull always -dp 3000:3000 ghcr.io/bcgov/notify-bc
# wait till console displays "ethereal email account created:"
# => Now browse to http://localhost:3000
```

If successful, similar output is displayed as in source code installation.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For the impatient, to get _NotifyBC_ instance up and running on localhost, you n
then run

```sh
docker run --rm -dp 6379:6379 redis # only on Windows
docker run --rm --pull always -dp 6379:6379 redis # only on Windows
git clone https://github.com/bcgov/NotifyBC.git
cd NotifyBC
npm i && npm run build
Expand Down
Loading