A self-hosted, password-protected web UI for managing Mattermost user profiles — built for administrators who need to edit user accounts without navigating the full Mattermost System Console.
| Platform | Architecture |
|---|---|
linux/amd64 | Intel / AMD 64-bit |
linux/arm64 | ARM 64-bit (Raspberry Pi 4+, AWS Graviton, Oracle Cloud Ampere) |
docker run -d \
-p 8099:8099 \
-e APP_USERNAME=admin \
-e APP_PASSWORD=changeme \
--name mm-user-manager \
w3kllc/mm-user-manager:latest
Then open http://localhost:8099 and log in with your chosen credentials.
| Variable | Required | Default | Description |
|---|---|---|---|
APP_USERNAME | Yes | — | Web UI login username |
APP_PASSWORD | Yes | — | Web UI login password |
services:
mm-user-manager:
image: w3kllc/mm-user-manager:latest
container_name: mm-user-manager
ports:
- "${HOST_PORT:-8099}:8099"
environment:
- APP_USERNAME=${APP_USERNAME}
- APP_PASSWORD=${APP_PASSWORD}
restart: unless-stopped
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
After logging in, enter:
https://mattermost.example.commanage_others_bots or System Admin role)Content type
Image
Digest
sha256:69ac05145…
Size
41.3 MB
Last updated
4 months ago
docker pull w3kllc/mm-user-manager