mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
22 lines
388 B
YAML
22 lines
388 B
YAML
variables: {}
|
|
|
|
config:
|
|
domains: []
|
|
|
|
env: {}
|
|
|
|
mounts:
|
|
- filePath: init-mongo.sh
|
|
content: |
|
|
#!/bin/bash
|
|
mongo <<EOF
|
|
use unifi
|
|
db.createUser({
|
|
user: "unifi",
|
|
pwd: "unifi_password",
|
|
roles: [
|
|
{ db: "unifi", role: "dbOwner" },
|
|
{ db: "unifi_stat", role: "dbOwner" }
|
|
]
|
|
})
|
|
EOF |