From 949a738ce6eb22730df0dc1a979c3085d3a2b76a Mon Sep 17 00:00:00 2001 From: jachen-sh <107783392+jachen-sh@users.noreply.github.com> Date: Wed, 17 Jan 2024 12:52:52 -0500 Subject: [PATCH] build mainnet 1.16.2 (#182) --- .github/workflows/docker.yaml | 2 +- README.md | 4 ++-- sui | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index c65a5b1..e8307de 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -10,7 +10,7 @@ on: - main env: - SUI_GIT_REVISION: c037dea # devnet-v1.17.0 + SUI_GIT_REVISION: mainnet-v1.16.2 concurrency: docker diff --git a/README.md b/README.md index 9bd26b5..1fccb1a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Multi-platform docker images for [Sui](https://sui.io/). These are built from the official release source code from [Sui](https://github.com/MystenLabs/sui/releases). -The images are tagged with the corresponding release version, e.g. `mainnet-v1.15.1`. +The images are tagged with the corresponding release version, e.g. `mainnet-v1.16.2`. Please refer to the [GitHub Packages](https://github.com/orgs/shinamicorp/packages?repo_name=sui-docker) page for available versions. @@ -22,7 +22,7 @@ Please refer to the [GitHub Packages](https://github.com/orgs/shinamicorp/packag - Contains a single `sui-node` binary, geared towards running Sui fullnodes. - Image entrypoint set to `sui-node`, so you can directly run commands like this: ``` - docker run --rm -it ghcr.io/shinamicorp/sui-node:mainnet-v1.15.1 --help + docker run --rm -it ghcr.io/shinamicorp/sui-node:mainnet-v1.16.2 --help ``` - In practice, you'll need to mount volumes for config, genesis, and data storage etc. - [sui](https://github.com/shinamicorp/sui-docker/pkgs/container/sui) diff --git a/sui b/sui index 9432b59..a5b22e2 100755 --- a/sui +++ b/sui @@ -13,7 +13,7 @@ import sys from pathlib import Path from subprocess import run -SUI_IMAGE = "ghcr.io/shinamicorp/sui:mainnet-v1.15.1" +SUI_IMAGE = "ghcr.io/shinamicorp/sui:mainnet-v1.16.2" def sui(*args: str) -> None: