mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-07 21:58:02 +00:00
7 lines
135 B
Markdown
7 lines
135 B
Markdown
# Administration
|
|
|
|
## Execute SQL commands
|
|
```bash
|
|
# Assume the container name is mariadb
|
|
docker exec -it mariadb mariadb -u root -p
|
|
``` |