computer-playbook/README.md

34 lines
1.0 KiB
Markdown
Raw Normal View History

2020-12-24 14:27:31 +01:00
# Server-Manager
## Description
Ansible script to manage servers.
2020-12-31 13:21:56 +01:00
## roles
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
## Update
Follow the best [practices for inventories](https://docs.ansible.com/ansible/2.3/playbooks_best_practices.html) and execute ansible via:
2020-12-24 14:27:31 +01:00
``bash
ansible-playbook -i ~/your-inventories/inventorie/hosts site.yml
2020-12-24 14:27:31 +01:00
``
## Debug
### Cleanup docker
``bash
docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker volume rm $(docker volume ls -q);
``
2021-01-23 08:26:39 +01:00
## todo
- Use docker-compose.yml files instead of the ansible inbuild docker-compose for more flexibility
- Implement https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker
- Refactor https://stackoverflow.com/questions/44784103/where-should-i-put-docker-compose-yml
2021-01-23 08:26:39 +01:00
## see
- https://wiki.archlinux.org/index.php/Ansible