mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-02 07:14:15 +02:00
16 lines
230 B
Markdown
16 lines
230 B
Markdown
## Administration
|
|
|
|
## cleanup
|
|
```bash
|
|
docker compose down -v
|
|
```
|
|
|
|
## check container status
|
|
```bash
|
|
watch -n 2 "docker compose ps -a"
|
|
```
|
|
|
|
## database access
|
|
```bash
|
|
sudo docker-compose exec -it postgres psql -U postgres
|
|
``` |