aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/nextcloud/tasks/config.yaml
blob: 367e7d57fe5643456211d9fa51780947eecb2916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---

- name: 'config | Copy the docker-compose file'
  ansible.builtin.template:
    src: 'docker-compose.yaml.j2'
    dest: 'docker-compose.yaml'
    mode: '644'

- name: 'config | Start the service'
  ansible.builtin.command: 'docker-compose up -d'
  register: '_compose_up_cmd'
  changed_when: '_compose_up_cmd.rc == 0'