Standartized docker-compose files. Added some documentation (AI generated)

This commit is contained in:
2025-08-23 23:18:02 +02:00
parent a0d5ffdd29
commit 2bb9e2541a
20 changed files with 550 additions and 304 deletions

18
Ansible/README.md Normal file
View File

@@ -0,0 +1,18 @@
# Ansible Playbooks
This directory contains Ansible playbooks for automating server configuration and management tasks.
## Playbooks
- **apt_upgrade.yml**: This playbook updates all packages on a Debian/Ubuntu server.
- **zabbix_agent_upgrade.yml**: This playbook upgrades the Zabbix agent on a server.
## Usage
To use these playbooks, you will need to have Ansible installed on your control machine. You will also need to have an inventory file that defines the hosts you want to manage.
Once you have Ansible and an inventory file set up, you can run a playbook using the following command:
```
ansible-playbook -i <inventory_file> <playbook>.yml
```