From f1ba14ff20c6c04b9e99e7cf3592a69f8ebcf332 Mon Sep 17 00:00:00 2001 From: Michael Rennecke Date: Thu, 14 May 2020 21:47:00 +0200 Subject: [PATCH] fix intend --- roles/nextcloud/tasks/main.yaml | 34 ++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/roles/nextcloud/tasks/main.yaml b/roles/nextcloud/tasks/main.yaml index 0e726ef..feff359 100644 --- a/roles/nextcloud/tasks/main.yaml +++ b/roles/nextcloud/tasks/main.yaml @@ -1,19 +1,19 @@ --- - - name: nextcloud data - file: - path: "{{ nextcloud_data }}" - state: directory - recurse: yes - - - - name: nextcloud container - docker_container: - name: nextcloud.0rpheus.net - image: "nextcloud:{{ nextcloud_version }}" - pull: yes - restart_policy: always - ports: - - 127.0.0.1:2090:80 - volumes: - - "{{ nextcloud_data }}:/var/www/html/" \ No newline at end of file +- name: nextcloud data + file: + path: "{{ nextcloud_data }}" + state: directory + recurse: yes + + +- name: nextcloud container + docker_container: + name: nextcloud.0rpheus.net + image: "nextcloud:{{ nextcloud_version }}" + pull: yes + restart_policy: always + ports: + - 127.0.0.1:2090:80 + volumes: + - "{{ nextcloud_data }}:/var/www/html/"