mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-03-31 14:24:16 +02:00
17 lines
405 B
Markdown
17 lines
405 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
|
|
```
|