@@ -248,7 +248,7 @@ $ docker run -it --mount type=bind,source=[PATH],target=[PATH] busybox
248248```
249249
250250In this case, the ` --mount ` flag takes three parameters. A type (` bind ` ), and
251- two paths. The ` source ` path is a the location on the host that you want to
251+ two paths. The ` source ` path is the location on the host that you want to
252252bind mount into the container. The ` target ` path is the mount destination
253253inside the container.
254254
@@ -419,7 +419,7 @@ $ docker run -it -m 300M ubuntu:24.04 /bin/bash
419419
420420We set memory limit only, this means the processes in the container can use
421421300M memory and 300M swap memory, by default, the total virtual memory size
422- (--memory-swap) will be set as double of memory, in this case, memory + swap
422+ (` --memory-swap ` ) will be set as double of memory, in this case, memory + swap
423423would be 2* 300M, so processes can use 300M swap memory as well.
424424
425425``` console
@@ -1087,7 +1087,7 @@ Additionally, you can set any environment variable in the container by using
10871087one or more ` -e ` flags. You can even override the variables mentioned above, or
10881088variables defined using a Dockerfile ` ENV ` instruction when building the image.
10891089
1090- If the you name an environment variable without specifying a value, the current
1090+ If you name an environment variable without specifying a value, the current
10911091value of the named variable on the host is propagated into the container's
10921092environment:
10931093
0 commit comments