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: content/get-started/introduction/build-and-push-first-image.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,32 +144,36 @@ Now that you have a repository, you are ready to build and push your image. An i
144
144
{{< /tab >}}
145
145
{{< tab name="VS Code" >}}
146
146
147
-
1. Open Visual Studio Code. In the **File** menu, select **Open Folder**. Choose **Clone Git Repository** and paste this URL: [https://github.com/docker/getting-started-todo-app](https://github.com/docker/getting-started-todo-app)
147
+
1. Open Visual Studio Code. Ensure you have the **Docker extension for VS Code** installed from [Extension Marketplace](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker).
148
+
149
+

150
+
151
+
2. In the **File** menu, select **Open Folder**. Choose **Clone Git Repository** and paste this URL: [https://github.com/docker/getting-started-todo-app](https://github.com/docker/getting-started-todo-app)
148
152
149
153

150
154
151
155
152
156
153
-
2. Right-click the `Dockerfile` and select the **Build Image...** menu item.
157
+
3. Right-click the `Dockerfile` and select the **Build Image...** menu item.
154
158
155
159
156
160

157
161
158
-
3. In the dialog that appears, enter a name of `DOCKER_USERNAME/getting-started-todo-app`, replacing `DOCKER_USERNAME` with your Docker username.
162
+
4. In the dialog that appears, enter a name of `DOCKER_USERNAME/getting-started-todo-app`, replacing `DOCKER_USERNAME` with your Docker username.
159
163
160
-
4. After pressing **Enter**, you'll see a terminal appear where the build will occur. Once it's completed, feel free to close the terminal.
164
+
5. After pressing **Enter**, you'll see a terminal appear where the build will occur. Once it's completed, feel free to close the terminal.
161
165
162
-
5. Open the Docker Extension for VS Code by selecting the Docker logo in the left nav menu.
166
+
6. Open the Docker Extension for VS Code by selecting the Docker logo in the left nav menu.
163
167
164
-
6. Find the image you created. It'll have a name of `docker.io/DOCKER_USERNAME/getting-started-todo-app`.
168
+
7. Find the image you created. It'll have a name of `docker.io/DOCKER_USERNAME/getting-started-todo-app`.
165
169
166
-
7. Expand the image to view the tags (or different versions) of the image. You should see a tag named `latest`, which is the default tag given to an image.
170
+
8. Expand the image to view the tags (or different versions) of the image. You should see a tag named `latest`, which is the default tag given to an image.
167
171
168
-
8. Right-click on the **latest** item and select the **Push...** option.
172
+
9. Right-click on the **latest** item and select the **Push...** option.
169
173
170
174

171
175
172
-
9. Press **Enter** to confirm and then watch as your image is pushed to Docker Hub. Depending on your upload speeds, it might take a moment to push the image.
176
+
10. Press **Enter** to confirm and then watch as your image is pushed to Docker Hub. Depending on your upload speeds, it might take a moment to push the image.
173
177
174
178
Once the upload is finished, feel free to close the terminal.
- Prevents a bug that caused Docker Desktop to not update `com.docker.vmnetd` or `com.docker.socket` to newer versions.
188
+
189
+
### Known issues
190
+
191
+
#### For Mac
192
+
193
+
- If you’re seeing a security popup about malware on `com.docker.vmnetd` or `com.docker.socket`, follow the steps documented in [docker/for-mac#7527](https://github.com/docker/for-mac/issues/7527).
0 commit comments