From 2590d037baec8939ae3415b72bf82affccb9bb18 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 22 Jan 2024 09:52:49 -0500 Subject: [PATCH] Example of commands to start the Docker image and configure Octez node --- docs/tutorials/join-dal-baker/get-octez.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/tutorials/join-dal-baker/get-octez.md b/docs/tutorials/join-dal-baker/get-octez.md index eeb4db852..f20b9dd50 100644 --- a/docs/tutorials/join-dal-baker/get-octez.md +++ b/docs/tutorials/join-dal-baker/get-octez.md @@ -4,3 +4,10 @@ The Weeklynet test network is restarted once every Wednesday at 0h UTC, and for To get this specific Docker image, or the hash of this specific commit, see https://teztnets.com/weeklynet-about. This page also contains the proper `octez-node config init` incantation to configure the Octez node with the current network parameters of Weeklynet, the URL of a public RPC endpoint, and a link to a faucet distributing free testnet tez. +For example, the commands to start a Docker image and configure the Octez node for Weeklynet might look like this: + +``` +docker run -it --entrypoint=/bin/sh tezos/tezos:master_7f3bfc90_20240116181914 + +octez-node config init --network https://teztnets.com/weeklynet-2024-01-17 +```