chore: bump version to v1.0.0-rc1

This commit is contained in:
Umut
2023-02-24 10:16:25 +01:00
parent 8d89614d8a
commit a7c97dcfa1
2 changed files with 4 additions and 4 deletions

View File

@@ -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.11.0
docker pull zamafhe/concrete-numpy:v1.0.0
```
### Starting a Jupyter server.
@@ -28,13 +28,13 @@ docker pull zamafhe/concrete-numpy:v0.11.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.11.0
docker run --rm -it -p 8888:8888 zamafhe/concrete-numpy:v1.0.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.11.0
docker run --rm -it -p 8888:8888 -v /path/to/notebooks:/data zamafhe/concrete-numpy:v1.0.0
```
### Starting a Bash session.