Skip to content

Commit

Permalink
Updating connecting-to-the-network.mdx for 1.4.0
Browse files Browse the repository at this point in the history
Part of the 1.4.0 release update
  • Loading branch information
amc-ie authored Aug 30, 2023
1 parent 339e405 commit d70e5c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/node-operators/connecting-to-the-network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ The first step to connecting to Mainnet is to install the latest daemon version.

Follow the steps for your operating system.

### Ubuntu 18.04, 20.04 and Debian 9, 10, 11
### Ubuntu 20.04 and Debian 10, 11, 12

Install the latest **Stable** [Mina Release 1.3.1.2](https://github.com/MinaProtocol/mina/releases/tag/1.3.1.2) or visit the [GitHub Releases Page](https://github.com/MinaProtocol/mina/releases) to install pre-release (Beta) builds.
Install the latest **Stable** [Mina Release 1.4.0](https://github.com/MinaProtocol/mina/releases/tag/1.4.0) or visit the [GitHub Releases Page](https://github.com/MinaProtocol/mina/releases) to install pre-release (Beta) builds.

To set up the new `stable` package repository and install the latest version:

```sh
echo "deb [trusted=yes] http://packages.o1test.net $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/mina.list
sudo apt-get install --yes apt-transport-https
sudo apt-get update
sudo apt-get install --yes curl unzip mina-mainnet=1.3.1.2-25388a0
sudo apt-get install --yes curl unzip mina-mainnet=1.4.0-c980ba8
```

To verify the daemon is correctly installed:
Expand All @@ -62,7 +62,7 @@ mina version
The expected output is:

```text
Commit 25388a0fed9695e8e9d04f75f50c2bae1c9c80db on branch master
Commit c980ba87c3417f40a7081225dfe7478c5ee70fd7 on branch master
```

## Start a standalone mina node
Expand Down Expand Up @@ -208,7 +208,7 @@ docker run --name mina -d \
--mount "type=bind,source=$(pwd)/.mina-env,dst=/entrypoint.d/mina-env,readonly" \
--mount "type=bind,source=$(pwd)/keys,dst=/keys,readonly" \
--mount "type=bind,source=$(pwd)/.mina-config,dst=/root/.mina-config" \
minaprotocol/mina-daemon:1.3.1.2-25388a0-bullseye-mainnet \
minaprotocol/mina-daemon:1.4.0-c980ba8-bullseye-mainnet \
daemon
```

Expand Down

0 comments on commit d70e5c1

Please sign in to comment.