mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-17 22:14:25 +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
|
|
``` |