Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 4b66bad

Browse files
committed
Updated forward port command to updated name
1 parent 401821e commit 4b66bad

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

containers/azure-hdinsight-python-3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This definition requires an Azure subscription to use. You can create a [free tr
1919
2. To use VS Code's copy of this definition:
2020
1. Start VS Code and open your project folder.
2121
2. Press <kbd>F1</kbd> select and **Remote-Containers: Create Container Configuration File...** from the command palette.
22-
3. Select the Azure HDInsight sdefinition.
22+
3. Select the Azure HDInsight definition.
2323

2424
3. To use latest-and-greatest copy of this definition from the repository:
2525
1. Clone this repository.

containers/dart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This definition includes some test code that will help you verify it is working
3939
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
4040
4. Select the `containers/dart` folder.
4141
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `pub get` and build the code before starting it.
42-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
42+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4343
7. Select port 8080 and click the "Open Browser" button in the notification that appears.
4444
8. You should see "Hello remote world!" after the page loads.
4545
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/dart/test-project/server.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Future main() async {
77
InternetAddress.loopbackIPv4,
88
8080,
99
);
10-
print('**************************************************************');
11-
print('* Press F1, select "Remote-Containers: Forward Port...", and *');
12-
print('* select the server port listed below to access server. *');
13-
print('**************************************************************');
10+
print('*************************************************************************');
11+
print('* Press F1, select "Remote-Containers: Forward Port from Container...", *');
12+
print('* and select the server port listed below to access server. *');
13+
print('*************************************************************************');
1414
print('Listening on localhost:${server.port}');
1515

1616
await for (HttpRequest request in server) {

containers/dotnetcore-2.1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This definition includes some test code that will help you verify it is working
4646
4. Select the `containers/dotnetcore-2.1` folder.
4747
5. After the folder has opened in the container, if prompted to restore packages in a notification, click "Restore".
4848
6. After packages are restored, press <kbd>F5</kbd> to start the project.
49-
7. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
49+
7. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
5050
8. Select port 8090 and click the "Open Browser" button in the notification that appears.
5151
9. You should see "Hello remote world from ASP.NET Core!" after the page loads.
5252
10. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/dotnetcore-latest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This definition includes some test code that will help you verify it is working
4646
4. Select the `containers/dotnetcore-latest` folder.
4747
5. After the folder has opened in the container, if prompted to restore packages in a notification, click "Restore".
4848
6. After packages are restored, press <kbd>F5</kbd> to start the project.
49-
7. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
49+
7. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
5050
8. Select port 8090 and click the "Open Browser" button in the notification that appears.
5151
9. You should see "Hello remote world from ASP.NET Core!" after the page loads.
5252
10. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/javascript-node-8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This definition includes some test code that will help you verify it is working
3939
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
4040
4. Select the `containers/javascript-node-8` folder.
4141
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `npm install` before starting it.
42-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
42+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4343
7. Select port 3000 and click the "Open Browser" button in the notification that appears.
4444
8. You should see "Hello remote world!" after the page loads.
4545
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/javascript-node-lts-mongo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This definition includes some test code that will help you verify it is working
3737
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
3838
4. Select the `containers/javascript-node-lts-mongo` folder.
3939
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `npm install` before starting it.
40-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
40+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4141
7. Select port 3000 and click the "Open Browser" button in the notification that appears.
4242
8. You should see "Hello remote world! 1 test record(s) found." after the page loads.
4343
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/javascript-node-lts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This definition includes some test code that will help you verify it is working
3939
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
4040
4. Select the `containers/javascript-node-lts` folder.
4141
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `npm install` before starting it.
42-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
42+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4343
7. Select port 3000 and click the "Open Browser" button in the notification that appears.
4444
8. You should see "Hello remote world!" after the page loads.
4545
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/typescript-node-8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This definition includes some test code that will help you verify it is working
3939
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
4040
4. Select the `containers/typescript-node-8` folder.
4141
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `npm install` and compile the source before starting it.
42-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
42+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4343
7. Select port 3000 and click the "Open Browser" button in the notification that appears.
4444
8. You should see "Hello remote world!" after the page loads.
4545
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

containers/typescript-node-lts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This definition includes some test code that will help you verify it is working
3939
3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...**
4040
4. Select the `containers/typescript-node-lts` folder.
4141
5. After the folder has opened in the container, press <kbd>F5</kbd> to start the project. This will automatically run `npm install` and compile the source before starting it.
42-
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port...**
42+
6. Once the project is running, press <kbd>F1</kbd> and select **Remote-Containers: Forward Port from Container...**
4343
7. Select port 3000 and click the "Open Browser" button in the notification that appears.
4444
8. You should see "Hello remote world!" after the page loads.
4545
9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing.

0 commit comments

Comments
 (0)