...
- Only perform steps 1 and 2 from the following link to install docker on Ubuntu: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04.
- The following can be used as a guide to installing docker on Mac: https://docs.docker.com/desktop/mac/install/
Fork the indy-node Git repo:
- Create a github account for yourself if you do not already have one. Go here if you need help.
- go to https://github.com/hyperledger/indy-node
- Click "fork" (upper right) and select your personal github account from the list.
- From your fork click the green Code button.
- Click 'HTTPS" and Copy the URL link shown in the field. Use this link in the next step.
Clone and build from
...
your fork of indy-node:
Copy and paste the following commands into a terminal command prompt:
Code Block |
---|
mkdir gitdir cd gitdir git clone https://github.com/hyperledger/indy-node <paste the path from the previous step> -b ubuntu-20.04-upgrade cd indy-node docker build -t indy-node-dev -f .devcontainer/Dockerfile .devcontainer/ docker run --rm -it -v $(pwd):/node:z indy-node-dev cd /node pip install .[tests] cd indy_common pytest . cd ../indy_node pytest . |
...