diff --git a/ANSIBLE/templates/A000003.yml b/ANSIBLE/templates/A000003.yml index dec9a04..09d1eb3 100644 --- a/ANSIBLE/templates/A000003.yml +++ b/ANSIBLE/templates/A000003.yml @@ -2,6 +2,15 @@ - hosts: WHAT_HOST_IN_USE tasks: + - name: Creates directory DESTINATION_FOLDER + ansible.builtin.file: + path: DESTINATION_FOLDER + state: directory + owner: www-data + group: www-data + mode: 0775 + recurse: yes + - name: Set up docker-compose file template: src: "WHAT_PART_LOCAL/docker-compose.yml"