Skip to content

Commit 111cbf2

Browse files
authored
docs: change the registry address (#33)
Signed-off-by: Gaius <[email protected]>
1 parent bb46909 commit 111cbf2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ MODEL \.safetensors$
5959
Then run the following command to build the model artifact:
6060

6161
```shell
62-
$ modctl build -t 127.0.0.1/library/test-models:v1 -f Modelfile .
62+
$ modctl build -t registry.com/models/llama3:v1.0.0 -f Modelfile .
6363
```
6464

6565
### Pull & Push
@@ -73,13 +73,13 @@ $ modctl login -u username -p password example.registry.com
7373
Pull the model artifact from the registry:
7474

7575
```shell
76-
$ modctl pull 127.0.0.1/library/test-models:v1
76+
$ modctl pull registry.com/models/llama3:v1.0.0
7777
```
7878

7979
Push the model artifact to the registry:
8080

8181
```shell
82-
$ modctl push 127.0.0.1/library/test-models:v1
82+
$ modctl push registry.com/models/llama3:v1.0.0
8383
```
8484

8585
### List
@@ -95,7 +95,7 @@ $ modctl ls
9595
Delete the model artifact in the local storage:
9696

9797
```shell
98-
$ modctl rm 127.0.0.1/library/test-models:v1
98+
$ modctl rm registry.com/models/llama3:v1.0.0
9999
```
100100

101101
Finally, you can use `purge` command to to remove all unnecessary blobs to free up the storage space:

0 commit comments

Comments
 (0)