Matrix Docker Ansible eploy
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- #jinja2: lstrip_blocks: "True"
- #!/bin/bash
-
- if [ $# -ne 2 ]; then
- echo "Usage: "$0" <username> <password>"
- exit 1
- fi
-
- user=$1
- password=$2
-
- docker exec matrix-dendrite create-account -config /data/dendrite.yaml -username "$user" -password "$password"
|