File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -154,14 +154,14 @@ Head to [Usage](#usage) to launch your operator service.
154
154
Pull the latest docker operator docker image:
155
155
156
156
``` bash
157
- docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4
157
+ docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.5
158
158
```
159
159
160
160
You can also build the docker image from source by cloning this repo and executing the following command from within
161
161
the ` v3-operator ` folder:
162
162
163
163
``` bash
164
- docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 .
164
+ docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.5 .
165
165
```
166
166
167
167
You will execute Operator Service commands using the format below (note the use of flags are optional):
@@ -170,7 +170,7 @@ You will execute Operator Service commands using the format below (note the use
170
170
docker run --rm -ti \
171
171
-u $( id -u) :$( id -g) \
172
172
-v ~ /.stakewise/:/data \
173
- europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 \
173
+ europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.5 \
174
174
src/main.py COMMAND \
175
175
--flagA=123 \
176
176
--flagB=xyz
@@ -393,7 +393,7 @@ below:
393
393
docker run --restart on-failure:10 \
394
394
-u $( id -u) :$( id -g) \
395
395
-v ~ /.stakewise/:/data \
396
- europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.4 \
396
+ europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v2.1.5 \
397
397
src/main.py start \
398
398
--vault=0x3320ad928c20187602a2b2c04eeaa813fa899468 \
399
399
--data-dir=/data \
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " v3-operator"
3
- version = " v2.1.4 "
3
+ version = " v2.1.5 "
4
4
description = " StakeWise operator service for registering vault validators"
5
5
authors = [" StakeWise Labs <info@stakewise.io>" ]
6
6
package-mode = false
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ http_copy() {
281
281
github_release () {
282
282
owner_repo=$1
283
283
version=$2
284
- test -z " $version " && version=" v2.1.4 "
284
+ test -z " $version " && version=" v2.1.5 "
285
285
giturl=" https://github.com/${owner_repo} /releases/${version} "
286
286
json=$( http_copy " $giturl " " Accept:application/json" )
287
287
test -z " $json " && return 1
You can’t perform that action at this time.
0 commit comments