mirror of
https://github.com/vale981/matrix-docker-ansible-deploy
synced 2025-03-12 05:56:40 -04:00
13 lines
252 B
Text
13 lines
252 B
Text
![]() |
#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 --user "$user" --password "$password"
|