Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update secretflow version up to 1.10.0b0 #68

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ workflows:
arch: amd64
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
# Publish for linux/arm64
- devcontainer-publish-arm64:
filters:
Expand All @@ -111,7 +111,7 @@ workflows:
arch: arm64
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
# Manifest they two and push to registry
- devcontainer-manifest:
requires:
Expand All @@ -123,4 +123,4 @@ workflows:
- main
matrix:
parameters:
tag: ['1.9.0b0', '1.8.0b0', '1.7.0b0', '1.6.1b0']
tag: ['1.10.0b0', '1.9.0b0', '1.8.0b0', '1.7.0b0']
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ rm ~/.jupyter/secretnote*

### 本地构建 SecretFlow 计算节点镜像

[secretflow/secretnote](https://hub.docker.com/r/secretflow/secretnote) 目前维护 1.6.1b0 至 1.9.0b0 的镜像,同时支持 amd64 和 arm64 架构。如有定制化的需求,可自行构建计算节点镜像,例如构建 1.9.0b0 (linux/arm64) 镜像的命令如下:
[secretflow/secretnote](https://hub.docker.com/r/secretflow/secretnote) 目前维护 1.7.0b0 至 1.10.0b0 的镜像,同时支持 amd64 和 arm64 架构。如有定制化的需求,可自行构建计算节点镜像,例如构建 1.9.0b0 (linux/arm64) 镜像的命令如下:

```sh
docker buildx build --build-arg SECRETFLOW_VERSION=1.9.0b0 --platform linux/arm64 -t secretflow/secretnote:1.9.0b0 -f ./docker/secretflow-secretnote/Dockerfile .
Expand Down
2 changes: 1 addition & 1 deletion docker/secretflow-secretnote/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile will build the secretflow/secretnote image for depolying a node
# for SecretNote.

ARG SECRETFLOW_VERSION="1.9.0b0"
ARG SECRETFLOW_VERSION="1.10.0b0"

# Get the repository and remove unncessary files
FROM alpine:3.14 AS source-tree
Expand Down
4 changes: 2 additions & 2 deletions docker/secretnote-sf-sim/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
alice:
image: secretflow/secretnote:1.9.0b0
image: secretflow/secretnote:1.10.0b0
pull_policy: if_not_present
platform: linux/amd64
environment:
Expand All @@ -11,7 +11,7 @@ services:
- ./alice:/home/secretnote/workspace

bob:
image: secretflow/secretnote:1.9.0b0
image: secretflow/secretnote:1.10.0b0
pull_policy: if_not_present
platform: linux/amd64
environment:
Expand Down
Loading