Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
run an indy node pool on server guide (#198)
Browse files Browse the repository at this point in the history
Signed-off-by: Mujeebullah Kalwar <mujeebkalwar.mk@gmail.com>
  • Loading branch information
mujeeb-kalwar committed Aug 23, 2021
1 parent 73f5ef6 commit 3af2b92
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,19 @@ Follow the build instructions for your OS on the [Hyperledger Indy SDK](https://
For macOS, if you get a `'indy' DLL not found exception`, move the built `libindy.dylib` file to the `test/Hyperledger.Aries.Tests/bin/Debug/netcoreapp3.1/` directory to explicitly add it to the path.


### Run an indy node pool
### Run an indy node pool on localhost
```
docker build -f docker/indy-pool.dockerfile -t indy_pool docker/
docker build --build-arg pool_ip=127.0.0.1 -f docker/indy-pool.dockerfile -t indy_pool docker/
docker run -itd -p 9701-9709:9701-9709 indy_pool
```

### Run an indy node pool on server
```
# replace <ip_address> with server IP address
docker build --build-arg pool_ip=<ip_address> -f docker/indy-pool.dockerfile -t indy_pool docker/
docker run -itd -p <ip_address>:9701-9709:9701-9709 indy_pool
```

### Run the tests
First, edit the keyword in the `scripts/tester.sh` file to select the tests you want to run. Then, run the script
```
Expand Down

0 comments on commit 3af2b92

Please sign in to comment.