mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-05 12:48:14 +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
|
|
``` |