OpenRC generator

This commit is contained in:
Maurice
2025-07-21 21:44:02 +02:00
commit da47934db9
6 changed files with 313 additions and 0 deletions

31
example.toml Normal file
View File

@@ -0,0 +1,31 @@
user = "maurict"
[service]
name = "nc-test-api"
image = "numberchords-api"
network = "nc-network"
depend = ["nc-test-database"]
[environment]
ASPNETCORE_ENVIRONMENT = "Test"
"NC_Security__OtherIssuerKeys__identity.numberchords.com__AuthPublicKey" = ""
[[secrets]]
key = "connection_string"
target = "Database__ConnectionString"
[[secrets]]
key = "api_secret_key"
[[ports]]
host = 80
container = 8080
protocol = "tcp"
[[ports]]
host = 22
container = 2222
[[volumes]]
volume = "test"
path = "/data/test"