NumberChords services

This commit is contained in:
maurice
2025-11-22 17:37:45 +01:00
parent 95cdf02105
commit 55a64cf546
6 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
user = "podman"
[service]
name = "numberchords-api"
host = "nc-api"
image = "numberchords-api"
network = "nc-test"
depend = ["numberchords-db.service"]
[environment]
ASPNETCORE_ENVIRONMENT = "Test"
# "NC_Security__OtherIssuerKeys__identity.numberchords.com__AuthPublicKey" = ""
[[secrets]]
key = "connection_string"
target = "Database__ConnectionString"
[[secrets]]
key = "api_secret_key"
target = "Security__AuthSecretKey"
[[secrets]]
key = "api_private_key"
target = "Security__AuthPrivateKey"
[[secrets]]
key = "mollie_api_key"
target = "Payment__MollieApiKey"
[[secrets]]
key = "smtp_username"
target = "Email__SmtpUsername"
[[secrets]]
key = "smtp_password"
target = "Email__SmtpPassword"
[[networks]]
name = "nc-test"
group = "caddy"