https://gitlab.com/tezos/tezos
Raw File
Tip revision: a87fd484b40c013b17f54f40a32bb9dc942e0f5f authored by François Thiré on 01 June 2022, 09:47:22 UTC
Alpha/Plugin: Add a private forge operations RPC
Tip revision: a87fd48
use-docker-ithacanet.sh
#!/bin/sh

# TODO tezos/tezos#2170: search shifted protocol name/no; rename script
set -e
set -x
cd
# [install docker]
apt-get update
apt-get install -y docker.io docker-compose kmod wget
dockerd &
sleep 10
# [get testnet]
wget -O ithacanet.sh https://gitlab.com/tezos/tezos/raw/latest-release/scripts/tezos-docker-manager.sh
chmod +x ithacanet.sh
# [start testnet]
./ithacanet.sh start
back to top