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: preset/README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ AI Tools Selector Preset Containers provides data scientists and developers with
18
18
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.
@@ -40,9 +40,9 @@ This mode allows running the container in an interactive shell. This enables the
40
40
41
41
```bash
42
42
docker run -it --rm \
43
-
--shm-size=12G \
43
+
-p 8888:8888 --shm-size=12G \
44
44
-v ${PWD}:/home/dev/workdir \
45
-
intel/deep-learning:latest-py3.9 bash
45
+
intel/deep-learning:latest-py<version> bash
46
46
```
47
47
48
48
> [!NOTE]
@@ -64,10 +64,10 @@ docker run -it --rm \
64
64
${RENDER_GROUP} \
65
65
${VIDEO_GROUP} \
66
66
--device=/dev/dri \
67
-
--shm-size=12G \
67
+
-p 8888:8888 --shm-size=12G \
68
68
-v ${PWD}:/home/dev/workdir \
69
69
-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
71
71
```
72
72
73
73
> [!NOTE]
@@ -100,9 +100,9 @@ This mode launches a jupyterlab notebook server. The command below will start th
100
100
101
101
```bash
102
102
docker run -it --rm \
103
-
--shm-size=12G \
103
+
-p 8888:8888 --shm-size=12G \
104
104
-v ${PWD}:/home/dev/workdir \
105
-
intel/deep-learning:latest-py3.9
105
+
intel/deep-learning:latest-py<version>
106
106
```
107
107
108
108
> [!NOTE]
@@ -124,10 +124,10 @@ docker run -it --rm \
124
124
${RENDER_GROUP} \
125
125
${VIDEO_GROUP} \
126
126
--device=/dev/dri \
127
-
--shm-size=12G \
127
+
-p 8888:8888 --shm-size=12G \
128
128
-v ${PWD}:/home/dev/workdir \
129
129
-v /dev/dri/by-path:/dev/dri/by-path \
130
-
intel/deep-learning:latest-py3.9
130
+
intel/deep-learning:latest-py<version>
131
131
```
132
132
133
133
> [!NOTE]
@@ -146,7 +146,7 @@ docker run -it --rm \
146
146
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:
147
147
148
148
```bash
149
-
docker run ... intel/deep-learning:latest-py3.9 \
149
+
docker run ... intel/deep-learning:latest-py<version> \
0 commit comments