9.2 KiB
C# (.NET) and MS SQL
Summary
Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and an MS SQL container for parallel database development. Adds an additional MS SQL container to the C# (.NET Core) container definition and deploys any .dacpac files from the mssql .devcontainer folder.
Metadata | Value |
---|---|
Contributors | The Azure Data Team (@dzsquared) |
Categories | Core, Languages |
Definition type | Docker Compose |
Published image architecture(s) | x86-64 |
Available image variants | 3.1-focal, 6.0-focal |
Works in Codespaces | Yes |
Container host OS support | Linux, macOS, Windows |
Container OS | Ubuntu 20.04/focal (Debian 11/bullseye image variants not yet supported by MSSQL client) |
Languages, platforms | .NET, .NET Core, C#, Microsoft SQL |
Description
This definition creates two containers, one for C# (.NET) and one for Microsoft SQL. VS Code will attach to the .NET Core container, and from within that container the Microsoft SQL container will be available on localhost
port 1433. By default, the sa
user password is P@ssw0rd
. For more on the configuration of MS SQL, see the section MS SQL Configuration
Using this definition
While this definition should work unmodified, you can select the version of .NET Core the container uses by updating the VARIANT
arg in the included docker-compose.yml
(and rebuilding if you've already created the container).
args:
VARIANT: "3.1-focal"
This will currently always use an Ubuntu 20.04/focal based .NET image since there is not yet a Debian 11/Bullseye ODBC driver.
Debug Configuration
Only the integrated terminal is supported by the Remote - Containers extension. You may need to modify your .vscode/launch.json
configurations to include the following:
"console": "integratedTerminal"
Using the forwardPorts property
By default, ASP.NET Core only listens to localhost inside the container. As a result, we recommend using the forwardPorts
property in .devcontainer/devcontainer.json
(available in v0.98.0+) to make these ports available locally.
"forwardPorts": [5000, 5001]
The appPort
property publishes rather than forwards the port, so applications need to listen to *
or 0.0.0.0
for the application to be accessible externally. This conflicts with ASP.NET Core's defaults, but fortunately the forwardPorts
property does not have this limitation.
If you've already opened your folder in a container, rebuild the container using the Remote-Containers: Rebuild Container command from the Command Palette (F1) so the settings take effect.
Enabling HTTPS in ASP.NET Core
To enable HTTPS in ASP.NET, you can mount an exported copy of your local dev certificate.
-
Export it using the following command:
Windows PowerShell
dotnet dev-certs https --trust; dotnet dev-certs https -ep "$env:USERPROFILE/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
macOS/Linux terminal
dotnet dev-certs https --trust; dotnet dev-certs https -ep "${HOME}/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere"
-
Add the following in to
.devcontainer/devcontainer.json
:"remoteEnv": { "ASPNETCORE_Kestrel__Certificates__Default__Password": "SecurePwdGoesHere", "ASPNETCORE_Kestrel__Certificates__Default__Path": "/home/vscode/.aspnet/https/aspnetapp.pfx", }
-
Finally, make the certificate available in the container as follows:
- Start the container/codespace
- Drag
~/.aspnet/https/aspnetapp.pfx
from your local machine into the root of the File Explorer in VS Code. - Open a terminal in VS Code and run:
mkdir -p /home/vscode/.aspnet/https && mv aspnetapp.pfx /home/vscode/.aspnet/https
If you've already opened your folder in a container, rebuild the container using the Remote-Containers: Rebuild Container command from the Command Palette (F1) so the settings take effect.
Installing Node.js or the Azure CLI
Given how frequently ASP.NET applications use Node.js for front end code, this container also includes Node.js. You can change the version of Node.js installed or disable its installation by updating the args
property in .devcontainer/docker-compose.yml
.
args:
VARIANT: "3.1-focal"
NODE_VERSION: "16" # Set to "none" to skip Node.js installation
If you would like to install the Azure CLI, you can reference a dev container feature by adding the following to .devcontainer/devcontainer.json
:
{
"features": {
"azure-cli": "latest"
}
}
If you've already opened your folder in a container, rebuild the container using the Remote-Containers: Rebuild Container command from the Command Palette (F1) so the settings take effect.
MS SQL Configuration
A secondary container for MS SQL is defined in devcontainer.json
with the Dockerfile and supporting scripts in the mssql
folder. This container is deployed from the latest developer edition of Microsoft SQL 2019. The database(s) are made available directly in the Codespace/VS Code through the MSSQL extension with a connection labeled "mssql-container". The default sa
user password is set to P@ssw0rd
. The default SQL port is mapped to port 1433
in docker-compose.yml
.
Changing the sa password
To change the sa
user password, change the value in docker-compose.yml
and devcontainer.json
.
Database deployment
By default, a blank user database is created titled "ApplicationDB". To add additional database objects or data through T-SQL during Codespace configuration, edit the file .devcontainer/mssql/setup.sql
or place additional .sql
files in the .devcontainer/mssql/
folder. Large numbers of scripts may take a few minutes following container creation to complete, even when the SQL server is available the database(s) may not be available yet.
Alternatively, .dacpac files placed in the ./bin/Debug
folder will be published as databases in the container during Codespace configuration. SqlPackage is used to deploy a database schema from a data-tier application file (dacpac), allowing you to bring your application's database structures into the dev container easily. The publish process may take a few minutes following container creation to complete, even when the server is available the database(s) may not be available yet.
Adding the definition to your folder
-
If this is your first time using a development container, please see getting started information on setting up Remote-Containers or creating a codespace using GitHub Codespaces.
-
Start VS Code and open your project folder or connect to a codespace.
-
Press F1 select and Add Development Container Configuration Files... command for Remote-Containers or Codespaces.
Note: If needed, you can drag-and-drop the
.devcontainer
folder from this sub-folder in a locally cloned copy of this repository into the VS Code file explorer instead of using the command. -
Select this definition. You may also need to select Show All Definitions... for it to appear.
-
Finally, press F1 and run Remote-Containers: Reopen Folder in Container or Codespaces: Rebuild Container to start using the definition.
Testing the definition
This definition includes some test code that will help you verify it is working as expected on your system. Follow these steps:
- If this is your first time using a development container, please follow the getting started steps to set up your machine.
- Clone this repository.
- Start VS Code, press F1, and select Remote-Containers: Open Folder in Container...
- Select the
containers/dotnetcore
folder. - After the folder has opened in the container, if prompted to restore packages in a notification, click "Restore".
- After packages are restored, press F5 to start the project. Note: if Auto Forward Ports has been disabled, you will need to manually forward port 8090 from the container with "Remote-Containers: Forward Ports..."
- Open the browser to localhost:8090.
- You should see "The databases are: ApplicationDB,msdb,model,tempdb,master" after the page loads.
- From here, you can add breakpoints or edit the contents of the
test-project
folder to do further testing.
License
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See LICENSE.
Licenses for SqlPackage, SQLCMD, and SQL Server Developer Edition.