Fix synapse container name in user creation commands

Alvis
2026-03-26 14:04:37 +00:00
parent e3242f4ec2
commit fa836ff1fc

@@ -13,7 +13,7 @@ Compose directory: `agap_git/matrix/`
Registration is disabled by default. Use `register_new_matrix_user` with the shared secret from `homeserver.yaml`. Registration is disabled by default. Use `register_new_matrix_user` with the shared secret from `homeserver.yaml`.
```bash ```bash
docker exec -it matrix-synapse-1 register_new_matrix_user \ docker exec -it synapse register_new_matrix_user \
-u <username> \ -u <username> \
-p <password> \ -p <password> \
-c /data/homeserver.yaml \ -c /data/homeserver.yaml \
@@ -25,7 +25,7 @@ Add `--admin` flag to create an admin user. The shared secret is in `~/agap_git/
To create a user non-interactively: To create a user non-interactively:
```bash ```bash
docker exec matrix-synapse-1 register_new_matrix_user \ docker exec synapse register_new_matrix_user \
-u <username> \ -u <username> \
-p <password> \ -p <password> \
--no-admin \ --no-admin \