You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/en/docs/handbook/pushing.md
+13-13
Original file line number
Diff line number
Diff line change
@@ -50,29 +50,29 @@ Here is a comparison table to help you choose:
50
50
51
51
This is similar to podman-env but only for Docker runtime.
52
52
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.
54
54
55
55
To point your terminal to use the docker daemon inside minikube run this:
56
56
57
57
```shell
58
58
eval$(minikube docker-env)
59
59
```
60
60
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.
62
62
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.
64
64
65
65
```shell
66
66
docker ps
67
67
```
68
68
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.
70
70
71
71
```shell
72
72
docker build -t my_image .
73
73
```
74
74
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.
76
76
77
77
{{% pageinfo color="info" %}}
78
78
Tip 1:
@@ -90,7 +90,7 @@ Tip 3:
90
90
In container-based drivers such as Docker or Podman, you will need to re-do docker-env each time you restart your minikube cluster.
91
91
{{% /pageinfo %}}
92
92
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/)
94
94
95
95
---
96
96
@@ -109,14 +109,14 @@ Tip 1 :
109
109
If your image changes after your cached it, you need to do 'cache reload'.
110
110
{{% /pageinfo %}}
111
111
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 :
113
113
```shell
114
114
minikube cache reload
115
115
```
116
116
117
117
{{% pageinfo color="info" %}}
118
118
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.
120
120
{{% /pageinfo %}}
121
121
122
122
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
155
155
podman-remote help
156
156
```
157
157
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.
159
159
160
160
```shell
161
161
podman-remote build -t my_image .
@@ -172,7 +172,7 @@ Note: On Linux the remote client is called "podman-remote", while the local prog
172
172
podman help
173
173
```
174
174
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.
176
176
177
177
```shell
178
178
podman build -t my_image .
@@ -185,7 +185,7 @@ Note: On macOS the remote client is called "podman", since there is no local "po
185
185
{{% /mactab %}}
186
186
{{% windowstab %}}
187
187
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.
189
189
190
190
```shell
191
191
podman help
@@ -269,7 +269,7 @@ For more information on the `ctr images` command, read the [containerd documenta
269
269
270
270
For more information on the `buildctl build` command, read the [Buildkit documentation](https://github.com/moby/buildkit#quick-start) (mobyproject.org).
271
271
272
-
to exit minikube ssh and come back to your terminal type:
272
+
To exit minikube ssh and come back to your terminal type:
0 commit comments