Skip to content

Commit d43e9f4

Browse files
committed
Fix minor typos
1 parent 6cdaf23 commit d43e9f4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/using/custom-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FROM $BASE_IMAGE
5555
...
5656
```
5757

58-
Include the below file in your project:
58+
Include the file below in your project:
5959

6060
```{literalinclude} recipe_code/docker-bake.python312.hcl
6161
:force:

docs/using/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## How to persist user data
44

5-
There are two types of data, which you might want to persist.
5+
There are two types of data you might want to persist.
66

77
1. If you want to persist your environment (i.e. packages installed by `mamba`, `conda`, `pip`, `apt-get`, and so on),
88
then you should create an inherited image and install packages only once while building your Dockerfile.
@@ -12,7 +12,7 @@ There are two types of data, which you might want to persist.
1212
```{note}
1313
If you install a package inside a running container (for example you run `pip install <package>` in a terminal),
1414
it won't be preserved when you next run your image.
15-
To make it work, install this package in your inherited image and rerun `docker build` command.
15+
To make it work, install this package in your inherited image and rerun the `docker build` command.
1616
```
1717

1818
2. If you want to persist user data (files created by you, like `Python` scripts, notebooks, text files, and so on),
@@ -26,7 +26,7 @@ There are two types of data, which you might want to persist.
2626

2727
We have lots of users with different packages they want to use.
2828
Adding them all is impossible, so we have several images to choose from.
29-
[Choose the image](selecting.md), that is closest to your needs, and feel free to [add your package on top of our images](recipes.md#using-mamba-install-recommended-or-pip-install-in-a-child-docker-image).
29+
[Choose the image](selecting.md) that is closest to your needs, and feel free to [add your package on top of our images](recipes.md#using-mamba-install-recommended-or-pip-install-in-a-child-docker-image).
3030

3131
## Who is `jovyan`
3232

docs/using/running.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following are some common patterns.
1616
### Example 1
1717

1818
This command pulls the `jupyter/scipy-notebook` image tagged `2025-02-12` from Quay.io if it is not already present on the local host.
19-
It then starts a container running Jupyter Server with the JupyterLab frontend and exposes the server on host port 8888.
19+
It then starts a container running a Jupyter Server with the JupyterLab frontend and exposes the server on host port 8888.
2020
The server logs appear in the terminal and include a URL to the server.
2121

2222
```bash
@@ -54,7 +54,7 @@ docker rm eca4aa01751c
5454
### Example 2
5555

5656
This command pulls the `jupyter/r-notebook` image tagged `2025-02-12` from Quay.io if it is not already present on the local host.
57-
It then starts a container running Server and exposes the server on host port 10000.
57+
It then starts a container running a Jupyter Server and exposes the server on host port 10000.
5858
The server logs appear in the terminal and include a URL to the Server but with the internal container port (8888) instead of the correct host port (10000).
5959

6060
```bash
@@ -179,7 +179,7 @@ See the
179179

180180
## Using JupyterHub
181181

182-
You can configure JupyterHub to launcher Docker containers from the Jupyter Docker Stacks images.
182+
You can configure JupyterHub to launch Docker containers from the Jupyter Docker Stacks images.
183183
If you've been following the [Zero to JupyterHub with Kubernetes](https://z2jh.jupyter.org/en/latest/) guide,
184184
see the [Use an existing Docker image](https://z2jh.jupyter.org/en/latest/jupyterhub/customizing/user-environment.html#choose-and-use-an-existing-docker-image) section for details.
185185
If you have a custom JupyterHub deployment, see the [Picking or building a Docker image](https://jupyterhub-dockerspawner.readthedocs.io/en/latest/docker-image.html)

0 commit comments

Comments
 (0)