@@ -44,8 +44,8 @@ from source to get more exact customization.
44
44
The ` compose.py ` script can be found in the [ server repository] ( https://github.com/triton-inference-server/server ) .
45
45
Simply clone the repository and run ` compose.py ` to create a custom container.
46
46
Note: Created container version will depend on the branch that was cloned.
47
- For example branch [ r23.09 ] ( https://github.com/triton-inference-server/server/tree/r23.09 )
48
- should be used to create a image based on the NGC 23.09 Triton release.
47
+ For example branch [ r23.10 ] ( https://github.com/triton-inference-server/server/tree/r23.10 )
48
+ should be used to create a image based on the NGC 23.10 Triton release.
49
49
50
50
` compose.py ` provides ` --backend ` , ` --repoagent ` options that allow you to
51
51
specify which backends and repository agents to include in the custom image.
@@ -76,19 +76,19 @@ For example, running
76
76
```
77
77
python3 compose.py --backend tensorflow1 --repoagent checksum
78
78
```
79
- on branch [ r23.09 ] ( https://github.com/triton-inference-server/server/tree/r23.09 ) pulls:
80
- - ` min ` container ` nvcr.io/nvidia/tritonserver:23.09 -py3-min `
81
- - ` full ` container ` nvcr.io/nvidia/tritonserver:23.09 -py3 `
79
+ on branch [ r23.10 ] ( https://github.com/triton-inference-server/server/tree/r23.10 ) pulls:
80
+ - ` min ` container ` nvcr.io/nvidia/tritonserver:23.10 -py3-min `
81
+ - ` full ` container ` nvcr.io/nvidia/tritonserver:23.10 -py3 `
82
82
83
83
Alternatively, users can specify the version of Triton container to pull from any branch by either:
84
84
1 . Adding flag ` --container-version <container version> ` to branch
85
85
```
86
- python3 compose.py --backend tensorflow1 --repoagent checksum --container-version 23.09
86
+ python3 compose.py --backend tensorflow1 --repoagent checksum --container-version 23.10
87
87
```
88
88
2 . Specifying ` --image min,<min container image name> --image full,<full container image name> ` .
89
89
The user is responsible for specifying compatible ` min ` and ` full ` containers.
90
90
```
91
- python3 compose.py --backend tensorflow1 --repoagent checksum --image min,nvcr.io/nvidia/tritonserver:23.09 -py3-min --image full,nvcr.io/nvidia/tritonserver:23.09 -py3
91
+ python3 compose.py --backend tensorflow1 --repoagent checksum --image min,nvcr.io/nvidia/tritonserver:23.10 -py3-min --image full,nvcr.io/nvidia/tritonserver:23.10 -py3
92
92
```
93
93
Method 1 and 2 will result in the same composed container. Furthermore, ` --image ` flag overrides the ` --container-version ` flag when both are specified.
94
94
0 commit comments