[PR #232] [CLOSED] create aspnet api with postgresql #914

Closed
opened 2026-03-07 21:26:42 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/232
Author: @eduardosilva
Created: 4/12/2022
Status: Closed

Base: masterHead: aspnet-api-postgresql


📝 Commits (1)

  • 4e053a4 create aspnet api with postgresql

📊 Changes

17 files changed (+929 additions, -0 deletions)

View changed files

📝 README.md (+2 -0)
aspnet-api-postgresql/.gitignore (+285 -0)
aspnet-api-postgresql/README.md (+62 -0)
aspnet-api-postgresql/api/.dockerignore (+284 -0)
aspnet-api-postgresql/api/Controllers/HealthCheckController.cs (+36 -0)
aspnet-api-postgresql/api/Infrastructure/ApplicationDbContext.cs (+11 -0)
aspnet-api-postgresql/api/Infrastructure/Database/Migrations/20220411183355_InititalCreation.Designer.cs (+28 -0)
aspnet-api-postgresql/api/Infrastructure/Database/Migrations/20220411183355_InititalCreation.cs (+19 -0)
aspnet-api-postgresql/api/Infrastructure/Database/Migrations/ApplicationDbContextModelSnapshot.cs (+26 -0)
aspnet-api-postgresql/api/Program.cs (+49 -0)
aspnet-api-postgresql/api/Properties/launchSettings.json (+31 -0)
aspnet-api-postgresql/api/appsettings.Development.json (+8 -0)
aspnet-api-postgresql/api/appsettings.json (+12 -0)
aspnet-api-postgresql/api/aspnet-api-postgresql.csproj (+26 -0)
aspnet-api-postgresql/aspnet-api-postgresql.sln (+22 -0)
aspnet-api-postgresql/docker-compose.yml (+28 -0)
aspnet-api-postgresql/output.png (+0 -0)

📄 Description

This version added a compose application using:

  • ASP.Net API Core
  • EntityFramework Core
  • Postgresql

Signed-off-by: Eduardo Silva eduardo.lour.silva@gmail.com


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/232 **Author:** [@eduardosilva](https://github.com/eduardosilva) **Created:** 4/12/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `aspnet-api-postgresql` --- ### 📝 Commits (1) - [`4e053a4`](https://github.com/docker/awesome-compose/commit/4e053a480cf817d53e2c55860715e0733ba7dd56) create aspnet api with postgresql ### 📊 Changes **17 files changed** (+929 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -0) ➕ `aspnet-api-postgresql/.gitignore` (+285 -0) ➕ `aspnet-api-postgresql/README.md` (+62 -0) ➕ `aspnet-api-postgresql/api/.dockerignore` (+284 -0) ➕ `aspnet-api-postgresql/api/Controllers/HealthCheckController.cs` (+36 -0) ➕ `aspnet-api-postgresql/api/Infrastructure/ApplicationDbContext.cs` (+11 -0) ➕ `aspnet-api-postgresql/api/Infrastructure/Database/Migrations/20220411183355_InititalCreation.Designer.cs` (+28 -0) ➕ `aspnet-api-postgresql/api/Infrastructure/Database/Migrations/20220411183355_InititalCreation.cs` (+19 -0) ➕ `aspnet-api-postgresql/api/Infrastructure/Database/Migrations/ApplicationDbContextModelSnapshot.cs` (+26 -0) ➕ `aspnet-api-postgresql/api/Program.cs` (+49 -0) ➕ `aspnet-api-postgresql/api/Properties/launchSettings.json` (+31 -0) ➕ `aspnet-api-postgresql/api/appsettings.Development.json` (+8 -0) ➕ `aspnet-api-postgresql/api/appsettings.json` (+12 -0) ➕ `aspnet-api-postgresql/api/aspnet-api-postgresql.csproj` (+26 -0) ➕ `aspnet-api-postgresql/aspnet-api-postgresql.sln` (+22 -0) ➕ `aspnet-api-postgresql/docker-compose.yml` (+28 -0) ➕ `aspnet-api-postgresql/output.png` (+0 -0) </details> ### 📄 Description This version added a compose application using: * ASP.Net API Core * EntityFramework Core * Postgresql Signed-off-by: Eduardo Silva <eduardo.lour.silva@gmail.com> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-07 21:26:42 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#914