Files
computer-playbook/roles/svc-db-postgres/Administration.md

10 lines
211 B
Markdown

# Administration
## Root Access
To access the database via the root account execute the following on the server:
```bash
# Assuming the container name is postgres
docker exec -it postgres psql -U postgres
```