test postgres integration
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 3s

This commit is contained in:
2026-03-14 15:26:35 -05:00
parent 509b8b003c
commit dd8864c56c
2 changed files with 11 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
}
},
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=devTest1;Username=devuser;Password=admin5"
"DefaultConnection": "Host=agologum-net;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}"
},
"AllowedHosts": "*",
"https_port": 443

View File

@@ -1,8 +1,18 @@
version: "3.9"
services:
agologum-api:
image: git.vxbard.net/homeburger/agologum-api:latest
container_name: agologum-api
restart: always
environment:
ConnectionStrings__DefaultConnection: Host=agologum-db;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}
ports:
- "5000:5000"
networks:
- agologum-net
networks:
agologum-net:
external: true