Skip to content

Commit f81b8ef

Browse files
authored
Fixed small typos
1 parent 329a1fb commit f81b8ef

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

site/content/en/docs/handbook/pushing.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -50,29 +50,29 @@ Here is a comparison table to help you choose:
5050

5151
This is similar to podman-env but only for Docker runtime.
5252
When using a container or VM driver (all drivers except none), you can reuse the Docker daemon inside minikube cluster.
53-
this means you don't have to build on your host machine and push the image into a docker registry. You can just build inside the same docker daemon as minikube which speeds up local experiments.
53+
This means you don't have to build on your host machine and push the image into a docker registry. You can just build inside the same docker daemon as minikube which speeds up local experiments.
5454

5555
To point your terminal to use the docker daemon inside minikube run this:
5656

5757
```shell
5858
eval $(minikube docker-env)
5959
```
6060

61-
now any 'docker' command you run in this current terminal will run against the docker inside minikube cluster.
61+
Now any 'docker' command you run in this current terminal will run against the docker inside minikube cluster.
6262

63-
so if you do the following commands, it will show you the containers inside the minikube, inside minikube's VM or Container.
63+
So if you do the following commands, it will show you the containers inside the minikube, inside minikube's VM or Container.
6464

6565
```shell
6666
docker ps
6767
```
6868

69-
now you can 'build' against the docker inside minikube. which is instantly accessible to kubernetes cluster.
69+
Now you can 'build' against the docker inside minikube, which is instantly accessible to kubernetes cluster.
7070

7171
```shell
7272
docker build -t my_image .
7373
```
7474

75-
To verify your terminal is using minikuber's docker-env you can check the value of the environment variable MINIKUBE_ACTIVE_DOCKERD to reflect the cluster name.
75+
To verify your terminal is using minikube's docker-env you can check the value of the environment variable MINIKUBE_ACTIVE_DOCKERD to reflect the cluster name.
7676

7777
{{% pageinfo color="info" %}}
7878
Tip 1:
@@ -90,7 +90,7 @@ Tip 3:
9090
In container-based drivers such as Docker or Podman, you will need to re-do docker-env each time you restart your minikube cluster.
9191
{{% /pageinfo %}}
9292

93-
more information on [docker-env](https://minikube.sigs.k8s.io/docs/commands/docker-env/)
93+
More information on [docker-env](https://minikube.sigs.k8s.io/docs/commands/docker-env/)
9494

9595
---
9696

@@ -109,14 +109,14 @@ Tip 1 :
109109
If your image changes after your cached it, you need to do 'cache reload'.
110110
{{% /pageinfo %}}
111111

112-
minikube refreshes the cache images on each start. however to reload all the cached images on demand, run this command :
112+
minikube refreshes the cache images on each start. However to reload all the cached images on demand, run this command :
113113
```shell
114114
minikube cache reload
115115
```
116116

117117
{{% pageinfo color="info" %}}
118118
Tip 2 :
119-
if you have multiple clusters, the cache command will load the image for all of them.
119+
If you have multiple clusters, the cache command will load the image for all of them.
120120
{{% /pageinfo %}}
121121

122122
To display images you have added to the cache:
@@ -155,7 +155,7 @@ You should now be able to use podman client on the command line on your host mac
155155
podman-remote help
156156
```
157157

158-
now you can 'build' against the storage inside minikube. which is instantly accessible to kubernetes cluster.
158+
Now you can 'build' against the storage inside minikube, which is instantly accessible to kubernetes cluster.
159159

160160
```shell
161161
podman-remote build -t my_image .
@@ -172,7 +172,7 @@ Note: On Linux the remote client is called "podman-remote", while the local prog
172172
podman help
173173
```
174174

175-
now you can 'build' against the storage inside minikube. which is instantly accessible to kubernetes cluster.
175+
now you can 'build' against the storage inside minikube, which is instantly accessible to kubernetes cluster.
176176

177177
```shell
178178
podman build -t my_image .
@@ -185,7 +185,7 @@ Note: On macOS the remote client is called "podman", since there is no local "po
185185
{{% /mactab %}}
186186
{{% windowstab %}}
187187

188-
now you can 'build' against the storage inside minikube. which is instantly accessible to kubernetes cluster.
188+
now you can 'build' against the storage inside minikube, which is instantly accessible to kubernetes cluster.
189189

190190
```shell
191191
podman help
@@ -269,7 +269,7 @@ For more information on the `ctr images` command, read the [containerd documenta
269269

270270
For more information on the `buildctl build` command, read the [Buildkit documentation](https://github.com/moby/buildkit#quick-start) (mobyproject.org).
271271

272-
to exit minikube ssh and come back to your terminal type:
272+
To exit minikube ssh and come back to your terminal type:
273273

274274
```shell
275275
exit
@@ -354,7 +354,7 @@ buildctl --addr unix://buildkitd.sock build \
354354
--output type=image,name=k8s.gcr.io/username/imagename:latest
355355
```
356356

357-
now you can 'build' against the storage inside minikube. which is instantly accessible to kubernetes cluster.
357+
Now you can 'build' against the storage inside minikube. which is instantly accessible to kubernetes cluster.
358358

359359
---
360360

0 commit comments

Comments
 (0)