31 lines
508 B
TOML
31 lines
508 B
TOML
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" |