Skip to content

Commit

Permalink
Release v1.0.8 (#277)
Browse files Browse the repository at this point in the history
Signed-off-by: cyc60 <[email protected]>
  • Loading branch information
cyc60 authored Jan 23, 2024
1 parent 3989059 commit f2b4177
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,22 @@ Head to [Usage](#usage) to launch your operator service.
Pull the latest docker operator docker image:

```bash
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.6
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.8
```

You can also build the docker image from source by cloning this repo and executing the following command from within
the `v3-operator` folder:

```bash
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.6 .
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.8 .
```

You will execute Operator Service commands using the format below (note the use of flags are optional):

```bash
docker run --rm -ti \
-v ~/.stakewise/:/data \
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.6 \
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.8 \
src/main.py COMMAND \
--flagA=123 \
--flagB=xyz
Expand Down Expand Up @@ -355,7 +355,7 @@ below:
```bash
docker run --restart on-failure:10 \
-v ~/.stakewise/:/data \
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.6 \
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.8 \
src/main.py start \
--vault=0x3320ad928c20187602a2b2c04eeaa813fa899468 \
--data-dir=/data \
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
operator:
build:
context: .
dockerfile: europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.6
dockerfile: europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.8
image: v3-operator
container_name: v3-operator
command: ["src/main.py", "start"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "v3-operator"
version = "v1.0.6"
version = "v1.0.8"
description = "StakeWise operator service for registering vault validators"
authors = ["StakeWise Labs <[email protected]>"]

Expand Down

0 comments on commit f2b4177

Please sign in to comment.