- hosts: - zigbee2mqtt tasks: - become: yes register: config shell: cmd: | mp=$(docker volume inspect zigbee2mqtt --format '{{"{{.Mountpoint}}"}}') cat $mp/configuration.yaml - copy: content: "{{ config.stdout }}" dest: files/zigbee2mqtt/{{ ansible_hostname }}/configuration.yaml delegate_to: localhost