Skip to content

Commit 27cddff

Browse files
authored
Merge pull request #241 from vaibhavsagar/patch-1
2 parents 7d1dda8 + 44cb189 commit 27cddff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/tutorials/dockerfile.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ For a Dockerfile to work on Binder, it must meet the following requirements:
138138
${NB_USER}
139139
```
140140

141-
This is the user that will be running the jupyter notebook process
141+
This is the user that will be running the JupyterLab process
142142
when your repo is launched with binder. So any files you would like to
143143
be writeable by the launched binder notebook should be owned by this user.
144144

@@ -166,7 +166,7 @@ For a Dockerfile to work on Binder, it must meet the following requirements:
166166
5. It must accept command arguments. The Dockerfile will effectively be launched as:
167167

168168
```shell
169-
docker run <image> jupyter notebook <arguments from the mybinder launcher>
169+
docker run <image> jupyter lab <arguments from the mybinder launcher>
170170
```
171171

172172
where {}`<arguments ...>` includes important information automatically set by the binder
@@ -189,7 +189,7 @@ You can build and test your image locally like this.
189189
2. Try starting a container from the image.
190190

191191
```shell
192-
docker run -it --rm -p 8888:8888 my-image jupyter-notebook --ip=0.0.0.0 --port=8888
192+
docker run -it --rm -p 8888:8888 my-image jupyter-lab --ip=0.0.0.0 --port=8888
193193
```
194194

195195
3. Inspect the container from terminal.

0 commit comments

Comments
 (0)