Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .openpublishing.publish.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
}
],
"notification_subscribers": [
"[email protected]"
"[email protected]",
"[email protected]"
],
"sync_notification_subscribers": [],
"branches_to_filter": [],
Expand Down
4 changes: 2 additions & 2 deletions WSL/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"open_source_feedback_productName": "Windows Subsystem for Linux",
"ms.service": "dev-environment",
"ms.subservice": "windows-subsystem-for-linux",
"author": "mattwojo",
"ms.author": "mattwoj",
"author": "GrantMeStrength",
"ms.author": "jken",
"ms.reviewer": "crloewen",
"searchScope": [
"WSL"
Expand Down
4 changes: 2 additions & 2 deletions WSL/tutorials/wsl-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Let's use Docker to create a development container for an existing app project.
1. For this example, I'll use the source code from my [Hello World tutorial for Django](/windows/python/web-frameworks#hello-world-tutorial-for-django) in the Python development environment set up docs. You can skip this step if you prefer to use your own project source code. To download my HelloWorld-Django web app from GitHub, open a WSL terminal (Ubuntu for example) and enter:

```bash
git clone https://github.com/mattwojo/helloworld-django.git
git clone https://github.com/<username>/helloworld-django.git
```

> [!NOTE]
Expand All @@ -120,7 +120,7 @@ Let's use Docker to create a development container for an existing app project.

![VS Code Dev Containers command](../media/docker-extension.png)

5. Select the project folder that you wish to containerize. In my case, this is `\\wsl\Ubuntu-20.04\home\mattwojo\repos\helloworld-django\`
5. Select the project folder that you wish to containerize. It will look something like: `\\wsl\Ubuntu-20.04\home\<username>\repos\helloworld-django\`

![VS Code Dev Containers folder](../media/docker-extension2.png)

Expand Down