|
| 1 | +# C# (.NET) and PostgreSQL (Community) |
| 2 | + |
| 3 | +## Summary |
| 4 | + |
| 5 | +*Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.* |
| 6 | + |
| 7 | +| Metadata | Value | |
| 8 | +|----------|-------| |
| 9 | +| *Contributors* | [Berkays](https://github.com/Berkays) | |
| 10 | +| *Categories* | Core, Languages | |
| 11 | +| *Definition type* | Docker Compose | |
| 12 | +| *Published image architecture(s)* | x86-64 | |
| 13 | +| *Available image variants* | [See C# (.NET) definition](../dotnet). | |
| 14 | +| *Works in Codespaces* | Yes | |
| 15 | +| *Container host OS support* | Linux, macOS, Windows | |
| 16 | +| *Container OS* | Ubuntu (`-focal`), Debian (`-bullseye`) | |
| 17 | +| *Languages, platforms* | .NET, .NET Core, C#, PostgreSQL | |
| 18 | + |
| 19 | +## Description |
| 20 | +This definition creates two containers, one for C# (.NET) and one for PostgreSQL. VS Code will attach to the .NET Core container, and from within that container the PostgreSQL container will be available on **`localhost`** port 5432. By default, the `postgre` user password is `postgre`. Default database parameters may be changed in `docker-compose.yml` file if desired. |
| 21 | + |
| 22 | +## Using this definition |
| 23 | + |
| 24 | +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). |
| 25 | + |
| 26 | +```yaml |
| 27 | +args: |
| 28 | + VARIANT: "3.1-focal" |
| 29 | +``` |
| 30 | +
|
| 31 | +This will use an Ubuntu 20.04/focal based .NET image by default. |
| 32 | +
|
| 33 | +### Debug Configuration |
| 34 | +
|
| 35 | +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: |
| 36 | + |
| 37 | +```json |
| 38 | +"console": "integratedTerminal" |
| 39 | +``` |
| 40 | + |
| 41 | +### Using the forwardPorts property |
| 42 | + |
| 43 | +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. |
| 44 | + |
| 45 | +```json |
| 46 | +"forwardPorts": [5000, 5001] |
| 47 | +``` |
| 48 | + |
| 49 | +The `appPort` property [publishes](https://docs.docker.com/config/containers/container-networking/#published-ports) 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. |
| 50 | + |
| 51 | +If you've already opened your folder in a container, rebuild the container using the **Remote-Containers: Rebuild Container** command from the Command Palette (<kbd>F1</kbd>) so the settings take effect. |
| 52 | + |
| 53 | +### Enabling HTTPS in ASP.NET Core |
| 54 | + |
| 55 | +To enable HTTPS in ASP.NET, you can mount an exported copy of your local dev certificate. |
| 56 | + |
| 57 | +1. Export it using the following command: |
| 58 | + |
| 59 | + **Windows PowerShell** |
| 60 | + |
| 61 | + ```powershell |
| 62 | + dotnet dev-certs https --trust; dotnet dev-certs https -ep "$env:USERPROFILE/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere" |
| 63 | + ``` |
| 64 | + |
| 65 | + **macOS/Linux terminal** |
| 66 | + |
| 67 | + ```powershell |
| 68 | + dotnet dev-certs https --trust; dotnet dev-certs https -ep "${HOME}/.aspnet/https/aspnetapp.pfx" -p "SecurePwdGoesHere" |
| 69 | + ``` |
| 70 | + |
| 71 | +2. Add the following in to `.devcontainer/devcontainer.json`: |
| 72 | + |
| 73 | + ```json |
| 74 | + "remoteEnv": { |
| 75 | + "ASPNETCORE_Kestrel__Certificates__Default__Password": "SecurePwdGoesHere", |
| 76 | + "ASPNETCORE_Kestrel__Certificates__Default__Path": "/home/vscode/.aspnet/https/aspnetapp.pfx", |
| 77 | + } |
| 78 | + ``` |
| 79 | + |
| 80 | +3. Finally, make the certificate available in the container as follows: |
| 81 | + |
| 82 | + 1. Start the container/codespace |
| 83 | + 2. Drag `~/.aspnet/https/aspnetapp.pfx` from your local machine into the root of the File Explorer in VS Code. |
| 84 | + 3. Open a terminal in VS Code and run: |
| 85 | + ```bash |
| 86 | + mkdir -p /home/vscode/.aspnet/https && mv aspnetapp.pfx /home/vscode/.aspnet/https |
| 87 | + ``` |
| 88 | + |
| 89 | +If you've already opened your folder in a container, rebuild the container using the **Remote-Containers: Rebuild Container** command from the Command Palette (<kbd>F1</kbd>) so the settings take effect. |
| 90 | + |
| 91 | +### Installing Node.js or the Azure CLI |
| 92 | + |
| 93 | +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`. |
| 94 | + |
| 95 | +```yaml |
| 96 | +args: |
| 97 | + VARIANT: "3.1-focal" |
| 98 | + NODE_VERSION: "16" # Set to "none" to skip Node.js installation |
| 99 | +``` |
| 100 | + |
| 101 | +If you would like to install the Azure CLI, you can reference [a dev container feature](https://aka.ms/vscode-remote/containers/dev-container-features) by adding the following to `.devcontainer/devcontainer.json`: |
| 102 | + |
| 103 | +```json |
| 104 | +{ |
| 105 | + "features": { |
| 106 | + "azure-cli": "latest" |
| 107 | + } |
| 108 | +} |
| 109 | +``` |
| 110 | + |
| 111 | +If you've already opened your folder in a container, rebuild the container using the **Remote-Containers: Rebuild Container** command from the Command Palette (<kbd>F1</kbd>) so the settings take effect. |
| 112 | + |
| 113 | +## PostgreSQL Configuration |
| 114 | +A secondary container for PostgreSQL is defined in `devcontainer.json` and `docker-compose.yml` files. This container is deployed from the latest version available at the time of this commit. `latest` tag is avoided to prevent breaking bugs. The default `postgres` user password is set to `postgres`. The database instance uses the default port of `5432`. |
| 115 | + |
| 116 | +### Changing the postgres user password |
| 117 | +To change the `postgres` user password, change the value in `docker-compose.yml` and `devcontainer.json`. |
| 118 | + |
| 119 | +## Adding the definition to your folder |
| 120 | + |
| 121 | +1. If this is your first time using a development container, please see getting started information on [setting up](https://aka.ms/vscode-remote/containers/getting-started) Remote-Containers or [creating a codespace](https://aka.ms/ghcs-open-codespace) using GitHub Codespaces. |
| 122 | + |
| 123 | +2. Start VS Code and open your project folder or connect to a codespace. |
| 124 | + |
| 125 | +3. Press <kbd>F1</kbd> select and **Add Development Container Configuration Files...** command for **Remote-Containers** or **Codespaces**. |
| 126 | + |
| 127 | + > **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. |
| 128 | + |
| 129 | +4. Select this definition. You may also need to select **Show All Definitions...** for it to appear. |
| 130 | + |
| 131 | +5. Finally, press <kbd>F1</kbd> and run **Remote-Containers: Reopen Folder in Container** or **Codespaces: Rebuild Container** to start using the definition. |
| 132 | + |
| 133 | +## Testing the definition |
| 134 | + |
| 135 | +This definition includes some test code that will help you verify it is working as expected on your system. Follow these steps: |
| 136 | + |
| 137 | +1. If this is your first time using a development container, please follow the [getting started steps](https://aka.ms/vscode-remote/containers/getting-started) to set up your machine. |
| 138 | +2. Clone this repository. |
| 139 | +3. Start VS Code, press <kbd>F1</kbd>, and select **Remote-Containers: Open Folder in Container...** |
| 140 | +4. Select the `containers/dotnet-postgres` folder. |
| 141 | +5. After the folder has opened in the container, if prompted to restore packages in a notification, click "Restore". |
| 142 | +6. After packages are restored, press <kbd>F5</kbd> 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..."* |
| 143 | +7. Open the browser to [localhost:8090](http://localhost:8090). |
| 144 | +8. You should see "The databases are: postgres, template1, template0" after the page loads. |
| 145 | +9. From here, you can add breakpoints or edit the contents of the `test-project` folder to do further testing. |
| 146 | + |
| 147 | +## License |
| 148 | + |
| 149 | +Copyright (c) Microsoft Corporation. All rights reserved. |
| 150 | + |
| 151 | +Licensed under the MIT License. See [LICENSE](https://github.com/microsoft/vscode-dev-containers/blob/main/LICENSE). |
| 152 | + |
| 153 | +Licenses for [POSTGRESQL](https://www.postgresql.org/about/licence/) |
0 commit comments