Skip to content
Closed
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ You also need to have your docker daemon system running (on mac, just download a
$(aws ecr get-login --no-include-email --region eu-central-1)
```

Copy displayed command string and execute to login
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this part

```
docker login -u AWS -p <hashpassword>
```


2. Pull the latest image from Amazon ECR

```
Expand All @@ -65,6 +71,9 @@ The node should be connected to the KILT testnet.
# build docker image (only do if code has changed, takes ~15 min)
docker build -t prototype-chain .

# run chain in dev mode locally
# run chain in dev mode locally after building docker image yourself
docker run -p 9944:9944 prototype-chain ./target/debug/node --dev --ws-port 9944 --ws-external --rpc-external

# run chain in dev mode locally with AWS Image
docker run -p 9944:9944 348099934012.dkr.ecr.eu-central-1.amazonaws.com/kilt/prototype-chain ./target/debug/node --dev --ws-port 9944 --ws-external --rpc-external
```