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,28 @@
user = "podman"
[service]
name = "numberchords-db"
host = "nc-db"
image = "mongodb/mongodb-community-server:latest"
network = "nc-test"
[[volumes]]
source = "nc_database_test"
target = "/data/db"
create = true
[[environment_secrets]]
name = "MONGO_INITDB_ROOT_USERNAME"
secret = "mongo_username"
[[environment_secrets]]
name = "MONGO_INITDB_ROOT_PASSWORD"
secret = "mongo_password"
[[ports]]
host = 27017
container = 27017
[[networks]]
name = "nc-test"
group = "caddy"