Skip to content

Commit

Permalink
Reference the bash scripts in the readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
kgapos committed Nov 2, 2023
1 parent 2372668 commit 0af4980
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,19 @@ npm start

### Using Docker

To build and run the image with docker, run the following commands in the root directory of the project:

The following bash scripts are available to help you build, run and test the app locally with docker:
```bash
docker build . -t node-healthcheck:dev
docker run -d \
--name node-hc \
-p 11012:11012 \
-e NODE_URL=https://mainnet.vechain.org \
node-healthcheck:dev
cd scripts
./clean.sh
./build.sh
./run.sh
./test.sh

# or simply
./all.sh
```

To download and run the image with docker:

To download and run the image with docker without building it:
```bash
docker run -d \
--name node-hc \
Expand Down

0 comments on commit 0af4980

Please sign in to comment.