mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-09 19:57:16 +02:00
- add role files (docs, vars, config, tasks, schema, templates) - networks: add web-app-magento 192.168.103.208/28 - ports: add localhost http 8052 Conversation: https://chatgpt.com/share/68b8820f-f864-800f-8819-da509b99cee2
16 lines
486 B
Markdown
16 lines
486 B
Markdown
# 👤 User Administration
|
|
|
|
- Access the admin panel at:
|
|
`{{ domains | get_url('web-app-magento', WEB_PROTOCOL) }}/admin`
|
|
*(or your custom admin path if configured)*
|
|
|
|
- New admin accounts can be created via the web UI or CLI:
|
|
```bash
|
|
docker compose exec -it application bin/magento admin:user:create \
|
|
--admin-user="john" \
|
|
--admin-password="SuperSecret_12345" \
|
|
--admin-email="john@example.com" \
|
|
--admin-firstname="John" \
|
|
--admin-lastname="Doe"
|
|
```
|