mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
group_vars | ||
roles | ||
.gitignore | ||
LICENSE.txt | ||
playbook.yml | ||
README.md |
Server-Playbook
Ansible software to setup and administrate applications and docker images on Linux servers. With this tool you can setup all of the following application on an root dedicated server in less then 4 hours.
Included Applications
Docker Applications
This software allows to setup the docker following applications:
- Nextcloud - Cloud Software
- Akaunting - Business Controlling Software
- Big Blue Button - Video Conference Software
- Gitea - Version Controll Software
- Joomla - CMS Software
- Mailu - Mailsoftware
- Peertube - Video Platform Software
- pixelfed - Photo Platform Software
- Wordpress - Blog Software
- YOURLS - URL Shortening Software
- Mastodon - Micro Blog Software
- Media Wiki - Wiki Software
- MyBB - Forum Software
Native Applications
This software shipts the following tools which are natively setup on the server:
- Backups Cleanup - Cleans up old backups
- Btrfs Health Check - Checks the health of Btrfs file systems
- Docker Health Check - Checks the health of docker containers
- Docker Reverse Proxy - Docker Reverse Proxy Solution
- Docker Volume Backup - Backup Solution for Docker Volumes
- Pull Primary Backups - Pulls the backups from another server and stores them
- Wireguard - Integrates the server in an wireguard vpn
Server Administration
Cleanup docker
bash docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker volume rm $(docker volume ls -q);
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.