You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/stepbystep/installation/docker/sharing-custom-data-and-config-files.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: Using custom data to save data files on host machine
7
7
However, note that once the docker container is stopped, all the work done in that session is lost. If we want to use custom data or persist the generated model or data files, we have to use **Volumes** or **Bind mount** to share files between the two.
8
8
9
9
```
10
-
docker run -v <local-location>:<container-location> -it zingg/zingg:0.4.1 bash
10
+
docker run -v <local-location>:<container-location> -it zingg/zingg:0.4.1-SNAPSHOT bash
11
11
```
12
12
13
13
The **\<local-location>** directory from host will get mounted inside container at **\<container-location>**. Any file written inside this directory will persist on the host machine and can be reused in a new container instance later.
Copy file name to clipboardExpand all lines: docs/stepbystep/installation/installing-from-release/installing-zingg.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ description: Downloading and setting things up
6
6
7
7
Download the tar zingg-version.tar.gz from the [Zingg releases page](https://github.com/zinggAI/zingg/releases) to a folder of your choice and run the following:
8
8
9
-
> gzip -d zingg-0.4.1.tar.gz ; tar xvf zingg-0.4.1.tar
9
+
> gzip -d zingg-0.4.1-SNAPSHOT.tar.gz ; tar xvf zingg-0.4.1-SNAPSHOT.tar
10
10
11
-
This will create a folder zingg-0.4.1 under the chosen folder.
11
+
This will create a folder zingg-0.4.1-SNAPSHOT under the chosen folder.
0 commit comments