diff --git a/README.md b/README.md index 6013e8f29..bd4066b90 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ go1.13.15 run build/ci.go install Clone this repository and change working directory to where you clone it, then run the following commands: ```bash -docker build --file Dockerfile.node -t "viction:2.4.0" . +docker build --file Dockerfile.node -t "viction:2.4.1" . ``` ### Pre-built Bianries @@ -125,8 +125,6 @@ Brief explainations on the used flags: ### Run Docker -From the above built image. Run the following command for full node on mainnet: - ```bash docker run --name viction \ -v "/path/to/data_dir:/tomochain/data" \ @@ -142,7 +140,7 @@ docker run --name viction \ -e NETSTATS_PORT=443 \ -e WS_SECRET=getty-site-pablo-auger-room-sos-blair-shin-whiz-delhi \ -e VERBOSITY=3 \ - docker.io/library/viction:2.4.0 + buildonviction/node:2.4.1 ``` Brief explainations on the supported variables: diff --git a/params/version.go b/params/version.go index 3c48f07c3..b0892f982 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 4 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )