From dce0a86aa193f599e2d24ea215a69015c3cc527f Mon Sep 17 00:00:00 2001 From: Umut Date: Mon, 3 Oct 2022 11:56:46 +0200 Subject: [PATCH] chore: update references to 0.8.x in docs --- README.md | 2 +- docs/getting-started/installing.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fec311248..4aed9e73b 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ pip install concrete-numpy You can get the concrete-numpy docker image by pulling the latest docker image: ```shell -docker pull zamafhe/concrete-numpy:v0.8.0 +docker pull zamafhe/concrete-numpy:v0.9.0 ``` You can find more detailed installation instructions in [installing.md](docs/getting-started/installing.md) diff --git a/docs/getting-started/installing.md b/docs/getting-started/installing.md index 75a8e4910..b8afb757e 100644 --- a/docs/getting-started/installing.md +++ b/docs/getting-started/installing.md @@ -20,7 +20,7 @@ Apple silicon users must use docker installation (explained below) as there is n You can also get the **Concrete Numpy** docker image: ```shell -docker pull zamafhe/concrete-numpy:v0.8.0 +docker pull zamafhe/concrete-numpy:v0.9.0 ``` ### Starting Jupyter server @@ -28,13 +28,13 @@ docker pull zamafhe/concrete-numpy:v0.8.0 By default, the entry point of the **Concrete Numpy** docker image is a jupyter server that you can access from your browser: ```shell -docker run --rm -it -p 8888:8888 zamafhe/concrete-numpy:v0.8.0 +docker run --rm -it -p 8888:8888 zamafhe/concrete-numpy:v0.9.0 ``` To save notebooks on host, you can use a local volume: ```shell -docker run --rm -it -p 8888:8888 -v /path/to/notebooks:/data zamafhe/concrete-numpy:v0.8.0 +docker run --rm -it -p 8888:8888 -v /path/to/notebooks:/data zamafhe/concrete-numpy:v0.9.0 ``` ### Starting Bash session