Fix volume creation through new config

This commit is contained in:
Luke Murphy 2020-04-14 15:39:43 +02:00
parent 5cdb6bbf53
commit eeada7a2a0
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
- name: Create volume mount directories - name: Create volume mount directories
become: true become: true
file: file:
path: "{{ item }}" path: "{{ item.src }}"
state: directory state: directory
owner: dokku owner: dokku
group: dokku group: dokku
@ -12,6 +12,6 @@
- name: Attach volume mounts - name: Attach volume mounts
dokku_storage: dokku_storage:
app: "{{ dokku.app }}" app: "{{ dokku.app }}"
mounts: "{{ item }}" mounts: "{{ item.src }}:{{ item.dest }}"
with_items: "{{ config.volumes }}" with_items: "{{ config.volumes }}"
when: config.volumes when: config.volumes