mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-03 23:52:04 +02:00
20 lines
523 B
Markdown
20 lines
523 B
Markdown
# Administration
|
|
|
|
Instructions for manual administrative operations like container login, config file edits, and post-update recovery actions.
|
|
|
|
## Modify Config 🔧
|
|
|
|
### Enter the Container
|
|
```bash
|
|
docker-compose exec -it application /bin/sh
|
|
```
|
|
|
|
### Modify the Configuration
|
|
Inside the container, install a text editor and edit the config:
|
|
```bash
|
|
apk add --no-cache nano && nano config/config.php
|
|
```
|
|
|
|
## Logs
|
|
|
|
The logs you will find here on the host: **/var/lib/docker/volumes/nextcloud_data/_data/data/nextcloud.log** |