mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-26 16:25:27 +02: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 |