mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-04 00:04:14 +02:00
Small .md optimations
This commit is contained in:
parent
892403cf8c
commit
ce82a61018
@ -1,4 +1,4 @@
|
|||||||
# License Agreement
|
# License Agreement - CyMaIS NonCommercial License (CNCL)
|
||||||
|
|
||||||
## Definitions
|
## Definitions
|
||||||
- **"Software":** Refers to *"[CyMaIS - Cyber Master Infrastructure Solution](https://cymais.cloud/)"* and its associated source code.
|
- **"Software":** Refers to *"[CyMaIS - Cyber Master Infrastructure Solution](https://cymais.cloud/)"* and its associated source code.
|
||||||
|
@ -4,7 +4,7 @@ This Ansible role provides the necessary tasks, files, templates, and variables
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 📌 Overview 🔍
|
## 📌 Overview
|
||||||
|
|
||||||
- **Database Variables**
|
- **Database Variables**
|
||||||
Defined in [./vars/database.yml](./vars/database.yml), these variables include:
|
Defined in [./vars/database.yml](./vars/database.yml), these variables include:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## Administration 📚
|
# Administration
|
||||||
|
|
||||||
### Full Reset 🚫➡️✅
|
## Full Reset 🚫➡️✅
|
||||||
|
|
||||||
The following environment variables need to be defined for successful operation:
|
The following environment variables need to be defined for successful operation:
|
||||||
|
|
||||||
@ -14,9 +14,9 @@ rm -rv /mnt/hdd/data/docker/volumes/friendica_data
|
|||||||
docker volume rm friendica_data
|
docker volume rm friendica_data
|
||||||
```
|
```
|
||||||
|
|
||||||
### Reset Database 🗄️
|
## Reset Database 🗄️
|
||||||
|
|
||||||
#### Manual Method:
|
## Manual Method:
|
||||||
1. Connect to the MariaDB instance:
|
1. Connect to the MariaDB instance:
|
||||||
```bash
|
```bash
|
||||||
docker exec -it central-mariadb mariadb -u root -p
|
docker exec -it central-mariadb mariadb -u root -p
|
||||||
@ -28,63 +28,63 @@ docker volume rm friendica_data
|
|||||||
exit;
|
exit;
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Automatic Method:
|
## Automatic Method:
|
||||||
```bash
|
```bash
|
||||||
DB_ROOT_PASSWORD="your_root_password"
|
DB_ROOT_PASSWORD="your_root_password"
|
||||||
docker exec -i central-mariadb mariadb -u root -p"${DB_ROOT_PASSWORD}" -e "DROP DATABASE IF EXISTS friendica; CREATE DATABASE friendica;"
|
docker exec -i central-mariadb mariadb -u root -p"${DB_ROOT_PASSWORD}" -e "DROP DATABASE IF EXISTS friendica; CREATE DATABASE friendica;"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Enter the Application Container 🔍
|
## Enter the Application Container 🔍
|
||||||
|
|
||||||
To access the application container:
|
To access the application container:
|
||||||
```bash
|
```bash
|
||||||
docker compose exec -it application sh
|
docker compose exec -it application sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Debugging Tools 🛠️
|
## Debugging Tools 🛠️
|
||||||
|
|
||||||
#### Check Environment Variables
|
## Check Environment Variables
|
||||||
```bash
|
```bash
|
||||||
docker compose exec -it application printenv
|
docker compose exec -it application printenv
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Inspect Volume Data
|
## Inspect Volume Data
|
||||||
```bash
|
```bash
|
||||||
ls -la /var/lib/docker/volumes/friendica_data/_data/
|
ls -la /var/lib/docker/volumes/friendica_data/_data/
|
||||||
```
|
```
|
||||||
|
|
||||||
### Autoinstall 🌟
|
## Autoinstall 🌟
|
||||||
|
|
||||||
Run the following command to autoinstall Friendica:
|
Run the following command to autoinstall Friendica:
|
||||||
```bash
|
```bash
|
||||||
docker compose exec --user www-data -it application bin/console autoinstall
|
docker compose exec --user www-data -it application bin/console autoinstall
|
||||||
```
|
```
|
||||||
|
|
||||||
### Reinitialization 🔄
|
## Reinitialization 🔄
|
||||||
|
|
||||||
#### Docker Only:
|
## Docker Only:
|
||||||
```bash
|
```bash
|
||||||
docker-compose up -d --force-recreate
|
docker-compose up -d --force-recreate
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Full Reinitialization:
|
## Full Reinitialization:
|
||||||
```bash
|
```bash
|
||||||
docker-compose up -d --force-recreate && sleep 2; docker compose exec --user www-data -it application bin/console autoinstall;
|
docker-compose up -d --force-recreate && sleep 2; docker compose exec --user www-data -it application bin/console autoinstall;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configuration Information ℹ️
|
## Configuration Information ℹ️
|
||||||
|
|
||||||
#### General Configuration:
|
## General Configuration:
|
||||||
```bash
|
```bash
|
||||||
cat /var/lib/docker/volumes/friendica_data/_data/config/local.config.php
|
cat /var/lib/docker/volumes/friendica_data/_data/config/local.config.php
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Email Configuration:
|
## Email Configuration:
|
||||||
```bash
|
```bash
|
||||||
docker compose exec -it application cat /etc/msmtprc
|
docker compose exec -it application cat /etc/msmtprc
|
||||||
```
|
```
|
||||||
|
|
||||||
### Email Debugging ✉️
|
## Email Debugging ✉️
|
||||||
|
|
||||||
To send a test email:
|
To send a test email:
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
x
Reference in New Issue
Block a user