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"
|