mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Optimized .mds and meta/main.yml for client-wireguard roles and refactored README.md of Docker Roles
This commit is contained in:
9
roles/docker-matrix-ansible/Administration.md
Normal file
9
roles/docker-matrix-ansible/Administration.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# Administration
|
||||
|
||||
## DANGER: Manuell deativation and deletion
|
||||
Be carefull what you do. This code you can execute:
|
||||
```
|
||||
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl disable {} &&
|
||||
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl stop {} &&
|
||||
rm -rv /matrix/
|
||||
```
|
@@ -1,6 +1,6 @@
|
||||
# Docker Setup Matrix via Ansible
|
||||
|
||||
## Overview
|
||||
## 📌 Overview
|
||||
|
||||
This document serves as the README for the `docker-ansible-matrix` role, a part of the `CyMaIS` project. This role automates the deployment of a Matrix server using Ansible.
|
||||
|
||||
@@ -8,13 +8,5 @@ Matrix is an open-source project that provides a protocol for secure, decentrali
|
||||
|
||||
This software uses https://github.com/spantaleev/matrix-docker-ansible-deploy as a base.
|
||||
|
||||
## DANGER: Manuell deativation and deletion
|
||||
Be carefull what you do. This code you can execute:
|
||||
```
|
||||
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl disable {} &&
|
||||
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl stop {} &&
|
||||
rm -rv /matrix/
|
||||
```
|
||||
|
||||
## Alternativ Matrix Setup Role
|
||||
An alternativ role to deploy Matrix you will find [here](../docker-matrix-compose/)
|
Reference in New Issue
Block a user