Skip to content

Commit 635eb47

Browse files
authored
Add a step to open a folder at the beginning (#3231)
1 parent 3ea7a36 commit 635eb47

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2844,6 +2844,30 @@
28442844
],
28452845
"description": "%vscode-docker.walkthrough.dockerStart.description%",
28462846
"steps": [
2847+
{
2848+
"id": "openFolder",
2849+
"title": "%vscode-docker.walkthrough.dockerStart.openFolder.title%",
2850+
"completionEvents": [
2851+
"onCommand:workbench.action.files.openFolder"
2852+
],
2853+
"when": "workspaceFolderCount == 0 && !isMac",
2854+
"description": "%vscode-docker.walkthrough.dockerStart.openFolder.description%",
2855+
"media": {
2856+
"markdown": "resources/walkthroughs/empty.md"
2857+
}
2858+
},
2859+
{
2860+
"id": "openFolderMac",
2861+
"title": "%vscode-docker.walkthrough.dockerStart.openFolder.title%",
2862+
"completionEvents": [
2863+
"onCommand:workbench.action.files.openFileFolder"
2864+
],
2865+
"when": "workspaceFolderCount == 0 && isMac",
2866+
"description": "%vscode-docker.walkthrough.dockerStart.openFolderMac.description%",
2867+
"media": {
2868+
"markdown": "resources/walkthroughs/empty.md"
2869+
}
2870+
},
28472871
{
28482872
"id": "scaffold",
28492873
"title": "%vscode-docker.walkthrough.dockerStart.scaffold.title%",

package.nls.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,12 +304,15 @@
304304
"vscode-docker.workspaceTrust.description": "Workspace must be trusted in order to perform relevant Docker actions.",
305305
"vscode-docker.walkthrough.dockerStart.title": "Getting Started with Docker",
306306
"vscode-docker.walkthrough.dockerStart.description": "Learn about Docker and the Docker extension for Visual Studio Code",
307+
"vscode-docker.walkthrough.dockerStart.openFolder.title": "Open a Workspace Folder",
308+
"vscode-docker.walkthrough.dockerStart.openFolder.description": "Open a workspace folder to get started with Docker extension features.\n[Open Folder](command:workbench.action.files.openFolder)",
309+
"vscode-docker.walkthrough.dockerStart.openFolderMac.description": "Open a workspace folder to get started with Docker extension features.\n[Open Folder](command:workbench.action.files.openFileFolder)",
307310
"vscode-docker.walkthrough.dockerStart.scaffold.title": "Add Docker Files to Workspace",
308311
"vscode-docker.walkthrough.dockerStart.scaffold.description": "A Dockerfile contains the instructions to assemble an image containing your app and its dependencies. Using this image to run your app in a container creates a production-like, reproducible runtime environment.\n\nIntelliSense support for authoring your Dockerfile is provided.\n[Add Docker Files](command:vscode-docker.configure)",
309312
"vscode-docker.walkthrough.dockerStart.buildImage.title": "Build an Image",
310313
"vscode-docker.walkthrough.dockerStart.buildImage.description": "The Docker extension makes it simple to build your image.\n[Build Image](command:vscode-docker.images.build)",
311314
"vscode-docker.walkthrough.dockerStart.runContainer.title": "Run a Container",
312-
"vscode-docker.walkthrough.dockerStart.runContainer.description": "Now that you've built your image, it's time to run your app in a container!\n[Run Image](command:vscode-docker.images.run)",
315+
"vscode-docker.walkthrough.dockerStart.runContainer.description": "You can run any image on your system including those you've built with a Dockerfile.\n[Run Image](command:vscode-docker.images.run)",
313316
"vscode-docker.walkthrough.dockerStart.dockerExplorer.title": "Use the Docker Explorer",
314317
"vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries. Also, if the [Azure Account extension](command:extension.open?%22ms-vscode.azure-account%22) is installed, you'll be able to browse your Azure Container Registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)",
315318
"vscode-docker.walkthrough.dockerStart.pushImage.title": "Push an Image to a Container Registry",

0 commit comments

Comments
 (0)