From 5c4c02b66f38ff34fe9d2352c2c14eba09928bda Mon Sep 17 00:00:00 2001 From: Dusan Morhac <55763425+dudo50@users.noreply.github.com> Date: Sat, 2 Nov 2024 00:40:00 +0100 Subject: [PATCH] Update introduction.md --- implementation-guide/introduction.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/implementation-guide/introduction.md b/implementation-guide/introduction.md index fb80ee1..9f318b9 100644 --- a/implementation-guide/introduction.md +++ b/implementation-guide/introduction.md @@ -47,6 +47,14 @@ No worries! **Try it out before you implement it!** +### Dockerized local testnet build: +**Make sure your docker deamon is running** +Copy the [Dockerfile](https://github.com/paraspell-research/xcnft-pallet/blob/main/Dockerfile) from this repository and input following commands: +- `docker build --platform linux/x86_64 -t polkadot-sdk-image:latest .` to build Docker image +- `docker run --platform linux/x86_64 -p 9910-9913:9910-9913 -p 9920-9921:9920-9921 --rm -it polkadot-sdk-image:latest` to start Zombienet. + +Once Zombienet is started, continue from step 8 in the next section. + ### Follow these steps to create local testnet that implements xcNFT: 1. Fork or clone [following repository](https://github.com/paraspell-research/polkadot-sdk)