Skip to content

Commit 5fbcb0d

Browse files
committed
Fix redirect docker docs links
1 parent 4d4ed0e commit 5fbcb0d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ It then starts a container running a Jupyter Server with the JupyterLab frontend
3737
docker run -p 10000:8888 quay.io/jupyter/scipy-notebook:2024-05-27
3838
```
3939

40-
You can modify the port on which the container's port is exposed by [changing the value of the `-p` option](https://docs.docker.com/engine/reference/run/#exposed-ports) to `-p 8888:8888`.
40+
You can modify the port on which the container's port is exposed by [changing the value of the `-p` option](https://docs.docker.com/engine/containers/run/#exposed-ports) to `-p 8888:8888`.
4141

4242
Visiting `http://<hostname>:10000/?token=<token>` in a browser loads JupyterLab,
4343
where:

docs/using/common.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ You do so by passing arguments to the `docker run` command.
6262
This feature is useful when mounting host volumes with specific owner permissions.
6363
You **must** run the container with `--user root` for this option to take effect.
6464
(The startup script will `su ${NB_USER}` after adjusting the user ID.)
65-
Instead, you might consider using the modern Docker-native options [`--user`](https://docs.docker.com/engine/reference/run/#user) and
66-
[`--group-add`](https://docs.docker.com/engine/reference/run/#additional-groups) - see the last bullet in this section for more details.
65+
Instead, you might consider using the modern Docker-native options [`--user`](https://docs.docker.com/engine/containers/run/#user) and
66+
[`--group-add`](https://docs.docker.com/engine/containers/run/#additional-groups) - see the last bullet in this section for more details.
6767
See bullet points regarding `--user` and `--group-add`.
6868

6969
- `-e NB_GID=<numeric gid>` - Instructs the startup script to change the primary group of `${NB_USER}` to `${NB_GID}`

docs/using/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ There are 2 types of data, which you might want to persist.
1717

1818
2. If you want to persist user data (files created by you, like `Python` scripts, notebooks, text files, and so on),
1919
then you should use a
20-
[Docker bind mount](https://docs.docker.com/storage/bind-mounts/) or
21-
[Docker Volume](https://docs.docker.com/storage/volumes/).
20+
[Docker bind mount](https://docs.docker.com/engine/storage/bind-mounts/) or
21+
[Docker Volume](https://docs.docker.com/engine/storage/volumes/).
2222
You can find [an example of using a bind mount here](./running.md#example-2).
2323
There is also [a mount troubleshooting section](./troubleshooting.md#permission-denied-when-mounting-volumes) if you experience any issues.
2424

docs/using/running.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This section provides details about the second.
99

1010
## Using the Docker CLI
1111

12-
You can launch a local Docker container from the Jupyter Docker Stacks using the [Docker command-line interface](https://docs.docker.com/engine/reference/commandline/cli/).
12+
You can launch a local Docker container from the Jupyter Docker Stacks using the [Docker command-line interface](https://docs.docker.com/reference/cli/docker/).
1313
There are numerous ways to configure containers using CLI.
1414
The following are some common patterns.
1515

docs/using/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The following sections cover a few of these scenarios and how to fix them.
7777
- If you are mounting your volume inside the `/home/` directory, you can use the `-e CHOWN_HOME=yes` and `CHOWN_HOME_OPTS="-R"` flags
7878
instead of the `-e CHOWN_EXTRA` and `-e CHOWN_EXTRA_OPTS` in the example above.
7979
- This solution should work in most cases where you have created a docker volume
80-
(i.e. using the [`docker volume create --name <my-volume>`command](https://docs.docker.com/storage/volumes/#create-and-manage-volumes)) and mounted it using the `-v` flag in `docker run`.
80+
(i.e. using the [`docker volume create --name <my-volume>`command](https://docs.docker.com/engine/storage/volumes/#create-and-manage-volumes)) and mounted it using the `-v` flag in `docker run`.
8181
```
8282

8383
2. **Matching the container's UID/GID with the host's**
@@ -229,7 +229,7 @@ If you have also **created a new user**, you might be experiencing any of the fo
229229
to modify the files in the default `/home` and `/opt/conda` directories.
230230
Further avoiding issues when trying to `conda install` additional packages.
231231

232-
- Use `docker inspect <container_id>` and look for the [`Mounts` section](https://docs.docker.com/storage/volumes/#start-a-container-with-a-volume)
232+
- Use `docker inspect <container_id>` and look for the [`Mounts` section](https://docs.docker.com/engine/storage/volumes/#start-a-container-with-a-volume)
233233
to verify that the volume was created and mounted accordingly:
234234

235235
```json

0 commit comments

Comments
 (0)