You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
---
|
|
|
|
- name: Create main folder for configuration files
|
|
file:
|
|
path: "{{ wh_docker_root_dir }}/conf"
|
|
state: directory
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
- name: Create folders for each containers
|
|
with_items: "{{ wh_docker }}"
|
|
file:
|
|
path: "{{ wh_docker_root_dir }}/conf/{{ item.wh_docker_name }}"
|
|
state: directory
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
- name: Deploy docker-compose YML file
|
|
with_items: "{{ wh_docker }}"
|
|
template:
|
|
src: docker-compose.j2
|
|
dest: "{{ wh_docker_root_dir }}/conf/{{ item.wh_docker_name }}/docker-compose.yml"
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
|
|
- name: Create main folder for Wordpress files
|
|
file:
|
|
path: "{{ wh_docker_root_dir }}/wordpress"
|
|
state: directory
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
- name: Create custom PHP config file for each containers
|
|
with_items: "{{ wh_docker }}"
|
|
file:
|
|
path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom.ini"
|
|
state: touch
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
- name: Create custom CRON config file for each containers
|
|
with_items: "{{ wh_docker }}"
|
|
file:
|
|
path: "{{ wh_docker_root_dir }}/wordpress/{{ item.wh_docker_name }}/custom_cron"
|
|
state: touch
|
|
owner: bin
|
|
group: wheel
|
|
mode: '0644'
|
|
|
|
- name: Restart Docker
|
|
service: name=docker state=restarted
|
|
|
|
- name: Launch containers
|
|
with_items: "{{ wh_docker }}"
|
|
command: "docker-compose -f {{ wh_docker_root_dir }}/conf/{{ item.wh_docker_name }}/docker-compose.yml up -d"
|
|
|
|
# - name: Send an welcome email message
|
|
# TODO
|
|
|