mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 14:34:24 +02: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
|
|
``` |