ansible-wordpress-host-init/setup_server.yml

17 lines
337 B
YAML
Raw Normal View History

2023-03-27 14:13:41 +00:00
---
- hosts: all
vars_files:
2023-03-28 08:24:45 +00:00
- vars/external.yml
2023-03-27 14:13:41 +00:00
become: yes
become_user: root
gather_facts: true
roles:
- role: update-packages
- role: install-nginx
- role: configure-nginx
- role: install-php
- role: configure-php
2023-03-27 16:38:19 +00:00
- role: install-wordpress
2023-03-27 18:54:28 +00:00
- role: install-docker
2023-03-28 08:24:45 +00:00
- role: setup-containers