Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Commit 706ad0c

Browse files
authored
Merge branch 'main' into development
2 parents 3e7b94a + e358709 commit 706ad0c

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

src/advanced/downloader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The Downloader is a service responsible for seeding and downloading historical d
77

88
**Information**:
99

10-
While all Erigon components are separable and can be run on different machines, the downloader must run on the same machine as Erigon to be able to share downloaded and seeded files.
10+
While all Erigon components are separable and can be run on different machines, the Downloader must run on the same machine as Erigon to be able to share downloaded and seeded files.
1111

1212
</div>
1313

src/installation/build_exec_win.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Open the Command Prompt and type the following:
5757
```bash
5858
git clone --branch v3.0.0-beta1 --single-branch https://github.com/erigontech/erigon.git
5959
```
60+
6061
You might need to change the `ExecutionPolicy` to allow scripts created locally or signed by a trusted publisher to run:
6162

6263
```powershell

src/installation/docker.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ docker images
3434
```
3535

3636
* Check which Erigon version has been downloaded:
37+
3738
```bash
3839
docker run -it <image_id> --v
3940
```
@@ -43,6 +44,7 @@ docker run -it <image_id> --v
4344
```bash
4445
docker run -it 50bef1b5d0f9 --chain=holesky --prune.mode=minimal
4546
```
47+
4648
* When done, exit the container or press `Ctrl+C`. The container will stop.
4749

4850
## Optional: Setup dedicated user

src/installation/upgrading-md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33
To upgrade Erigon to a newer version when you've originally installed it via Git and manual compilation, you should follow these steps without needing to delete the entire folder:
44

55
* **Terminate your Erigon** session by pressing CTRL+C
6-
* *Navigate to your Erigon directory*
6+
7+
* **Navigate to your Erigon directory**
8+
79
* **Fetch the latest changes from the repository**: You need to make sure your local repository is up-to-date with the main GitHub repository. Run:
10+
811
```bash
912
git fetch --tags
1013
```
14+
1115
* **Check out** the [latest version](https://github.com/ledgerwatch/erigon/releases) and switch to it using:
1216

1317
```bash
@@ -38,9 +42,9 @@ If you're using Docker to run Erigon, the process to upgrade to a newer version
3842
```
3943

4044
Replace `<new_version_tag>` with the actual version tag you wish to use. For example:
41-
45+
4246
```bash
43-
docker pull erigontech/erigon:3.0.0
47+
docker pull erigontech/erigon:v3.0.0-beta1
4448
```
4549

4650
* **List Your Docker Images**: Check your downloaded images to confirm the new image is there and get the new image ID:

0 commit comments

Comments
 (0)