- name: Create app directory file: path: "{{ service_dir }}" state: directory - name: Copy Docker Compose script template: src: "{{ role_path }}/templates/docker-compose.yml.j2" dest: "{{ service_dir }}/docker-compose.yml" - name: Create data directory file: path: "{{ data_dir }}" state: directory owner: 1000 group: 1000 - name: Copy conf directory file: path: "{{ service_dir }}/conf" state: directory owner: 1000 group: 1000 - name: Copy app.ini template: src: "{{ role_path }}/templates/app.ini.j2" dest: "{{ service_dir }}/conf/app.ini" register: config - name: Start the Docker Compose docker_compose: project_src: "{{ service_dir }}" pull: true remove_orphans: true restarted: "{{ config.changed }}"