From 09e83c62fee2609cba41a60d69593e63ee1ffc77 Mon Sep 17 00:00:00 2001 From: Lizz Thabet Date: Fri, 10 Nov 2023 12:24:16 -0500 Subject: [PATCH] (refact) update docker init template name to reflect the cli --- content/language/dotnet/containerize.md | 2 +- data/init-cli/docker_init.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/content/language/dotnet/containerize.md b/content/language/dotnet/containerize.md index 519c1e562b..7e7bd0f247 100644 --- a/content/language/dotnet/containerize.md +++ b/content/language/dotnet/containerize.md @@ -1,7 +1,7 @@ --- title: Containerize a .NET application keywords: .net, containerize, initialize -description: Learn how to containerize an ASP.NET application. +description: Learn how to containerize an ASP.NET application. aliases: - /language/dotnet/build-images/ - /language/dotnet/run-containers/ diff --git a/data/init-cli/docker_init.yaml b/data/init-cli/docker_init.yaml index 324a0f1d89..0b62050aa5 100644 --- a/data/init-cli/docker_init.yaml +++ b/data/init-cli/docker_init.yaml @@ -19,7 +19,7 @@ long: |- After running `docker init`, you can choose one of the following templates: - * ASP.NET: Suitable for an ASP.NET application. + * ASP.NET Core: Suitable for an ASP.NET Core application. * Go: Suitable for a Go server application. * Node: Suitable for a Node server application. * Python: Suitable for a Python server application. @@ -70,7 +70,7 @@ examples: |- ? What application platform does your project use? [Use arrows to move, type to filter] > Go - (detected) suitable for a Go server application - ASP.NET - suitable for an ASP.NET application + ASP.NET Core - suitable for an ASP.NET Core application Python - suitable for a Python server application Node - suitable for a Node server application Rust - suitable for a Rust server application @@ -173,12 +173,12 @@ examples: |- Your application will be available at http://localhost:8000 ``` - ### Example of selecting ASP.NET + ### Example of selecting ASP.NET Core - The following example shows the prompts that appear after selecting `ASP.NET` and example input. The ASP.NET template also creates a `README.Docker.md` file with additional information about building and deploying your application. + The following example shows the prompts that appear after selecting `ASP.NET Core` and example input. The ASP.NET Core template also creates a `README.Docker.md` file with additional information about building and deploying your application. ```console - ? What application platform does your project use? ASP.NET + ? What application platform does your project use? ASP.NET Core ? What's the name of your solution's main project? myapp ? What version of .NET do you want to use? 6.0 ? What local port do you want to use to access your server? 8000