Skip to content

Commit 6714edf

Browse files
[DOC Update ] fix notebook launch in README.md (NVIDIA#213)
* [DOC Update ] fix notebook launch in README.md We do not need to expose network and command to launch notebook is incorrect. * Update README.md Add --ipc=host which is required for Megatron
1 parent c2805e3 commit 6714edf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

finetuning/Gemma/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ docker pull nvcr.io/nvidia/nemo:24.01.gemma
5353
The best way to run this notebook is from within the container. You can do that by launching the container with the following command
5454

5555
```bash
56-
docker run -it --rm --gpus all --ipc host --network host -v $(pwd):/workspace nvcr.io/nvidia/nemo:24.01.gemma
56+
docker run -it --rm --gpus all --ipc=host -p 8888:8888 -v $(pwd):/workspace nvcr.io/nvidia/nemo:24.01.gemma
5757
```
5858

5959
Then, from within the container, start the jupyter server with
6060

6161
```bash
62-
jupyter lab --no-browser --port=8080 --allow-root --ip 0.0.0.0
63-
```
62+
jupyter lab --ip 0.0.0.0 --no-browser --allow-root
63+
```

0 commit comments

Comments
 (0)