Skip to content

Commit 0e622e4

Browse files
author
Tyler Titsworth
authored
Merge branch 'main' into tylertitsworth/tgi-gaudi
2 parents 3724e2e + 8d46a64 commit 0e622e4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

preset/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ AI Tools Selector Preset Containers provides data scientists and developers with
1818
2. Pull a Preset Container of your choice from the [AI Tools Selector](https://www.intel.com/content/www/us/en/developer/tools/oneapi/ai-tools-selector.html) or from the [table](#preset-containers). The commands below use the `deep-learning` preset as an example.
1919

2020
```bash
21-
docker pull intel/deep-learning:latest-py3.9
21+
docker pull intel/deep-learning:latest-py<version>
2222
```
2323

2424
## Run Preset Container
@@ -40,9 +40,9 @@ This mode allows running the container in an interactive shell. This enables the
4040

4141
```bash
4242
docker run -it --rm \
43-
--shm-size=12G \
43+
-p 8888:8888 --shm-size=12G \
4444
-v ${PWD}:/home/dev/workdir \
45-
intel/deep-learning:latest-py3.9 bash
45+
intel/deep-learning:latest-py<version> bash
4646
```
4747

4848
> [!NOTE]
@@ -64,10 +64,10 @@ docker run -it --rm \
6464
${RENDER_GROUP} \
6565
${VIDEO_GROUP} \
6666
--device=/dev/dri \
67-
--shm-size=12G \
67+
-p 8888:8888 --shm-size=12G \
6868
-v ${PWD}:/home/dev/workdir \
6969
-v /dev/dri/by-path:/dev/dri/by-path \
70-
intel/deep-learning:latest-py3.9 bash
70+
intel/deep-learning:latest-py<version> bash
7171
```
7272

7373
> [!NOTE]
@@ -100,9 +100,9 @@ This mode launches a jupyterlab notebook server. The command below will start th
100100
101101
```bash
102102
docker run -it --rm \
103-
--shm-size=12G \
103+
-p 8888:8888 --shm-size=12G \
104104
-v ${PWD}:/home/dev/workdir \
105-
intel/deep-learning:latest-py3.9
105+
intel/deep-learning:latest-py<version>
106106
```
107107
108108
> [!NOTE]
@@ -124,10 +124,10 @@ docker run -it --rm \
124124
${RENDER_GROUP} \
125125
${VIDEO_GROUP} \
126126
--device=/dev/dri \
127-
--shm-size=12G \
127+
-p 8888:8888 --shm-size=12G \
128128
-v ${PWD}:/home/dev/workdir \
129129
-v /dev/dri/by-path:/dev/dri/by-path \
130-
intel/deep-learning:latest-py3.9
130+
intel/deep-learning:latest-py<version>
131131
```
132132

133133
> [!NOTE]
@@ -146,7 +146,7 @@ docker run -it --rm \
146146
Modify your notebook server command by using the default example below to change the network (port/ip) and security (privilege) settings by appending it to the docker run commands above:
147147

148148
```bash
149-
docker run ... intel/deep-learning:latest-py3.9 \
149+
docker run ... intel/deep-learning:latest-py<version> \
150150
bash -c "jupyter notebook --notebook-dir=~/jupyter \
151151
--port 8888 \
152152
--ip 0.0.0.0 \

0 commit comments

Comments
 (0)