diff --git a/README.md b/README.md index b8735858a8..82a80d1e6e 100644 --- a/README.md +++ b/README.md @@ -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 +``` +docker login -u AWS -p +``` + + 2. Pull the latest image from Amazon ECR ``` @@ -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 ```