File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,14 +98,14 @@ operator COMMAND --flagA=123 --flagB=xyz
9898Pull the latest docker Operator docker image:
9999
100100``` bash
101- docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10
101+ docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11
102102```
103103
104104You can also build the docker image from source by cloning this repo and executing the following command from within
105105the ` v3-operator ` folder:
106106
107107``` bash
108- docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10 .
108+ docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11 .
109109```
110110
111111You will execute Operator Service commands using the format below (note the use of flags are optional):
@@ -114,7 +114,7 @@ You will execute Operator Service commands using the format below (note the use
114114docker run --rm -ti \
115115-u $( id -u) :$( id -g) \
116116-v ~ /.stakewise/:/data \
117- europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.10 \
117+ europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v4.1.11 \
118118src/main.py COMMAND \
119119--flagA=123 \
120120--flagB=xyz
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " v3-operator"
3- version = " v4.1.10 "
3+ version = " v4.1.11 "
44description = " StakeWise operator service for registering vault validators"
55authors = [" StakeWise Labs <info@stakewise.io>" ]
66package-mode = false
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ http_copy() {
288288github_release () {
289289 owner_repo=$1
290290 version=$2
291- test -z " $version " && version=" v4.1.10 "
291+ test -z " $version " && version=" v4.1.11 "
292292 giturl=" https://github.com/${owner_repo} /releases/${version} "
293293 json=$( http_copy " $giturl " " Accept:application/json" )
294294 test -z " $json " && return 1
You can’t perform that action at this time.
0 commit comments