mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-21 23:42:24 +02:00
17 lines
361 B
Markdown
17 lines
361 B
Markdown
# Administration Notes
|
|
|
|
## Check configuration
|
|
|
|
```bash
|
|
./launcher enter application
|
|
pry(main)> SiteSetting.all.each { |setting| puts "#{setting.name}: #{setting.value}" }
|
|
```
|
|
---
|
|
|
|
## Reinitialize Container
|
|
|
|
To reinitialize the container execute:
|
|
|
|
```bash
|
|
docker network connect discourse_default central-postgres && ./launcher rebuild discourse_application
|
|
``` |