computer-playbook/README.md

32 lines
892 B
Markdown
Raw Normal View History

2021-11-12 12:52:51 +01:00
# Server-Playbook
2021-11-12 13:00:36 +01:00
[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
2023-01-09 15:59:36 +01:00
2020-12-24 14:27:31 +01:00
## Description
Ansible script to manage servers.
2021-11-12 13:00:36 +01:00
## Roles
2020-12-31 13:21:56 +01:00
The system use the following role namings:
| role prefix | meaning|
|---|---|
2021-01-23 08:26:39 +01:00
|system-|general system roles which apply basic configurations|
2020-12-31 13:21:56 +01:00
|native-|applications which run native on the system|
|docker-|applications which run on docker containers on the system|
2020-12-24 14:27:31 +01:00
## Debug
2023-01-09 15:59:36 +01:00
2020-12-24 14:27:31 +01:00
### Cleanup docker
``bash
docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker volume rm $(docker volume ls -q);
``
2023-01-09 15:59:36 +01:00
### Restart
To mercifull restart the server and to prevent data lost type in:
``bash
docker stop $(docker ps -a -q) && systemctl stop docker && shutdown -r +2 "The system will shutdown in 2 minutes"
``
May it's neccessary to restart some of the the docker containers manual afterwards.