--- - name: Copy traefik conf ansible.builtin.copy: backup: true src: . dest: traefik/ register: traefik_copy_results - name: Create proxy network community.docker.docker_network: name: proxy state: present become: true - name: Force update and restart container community.docker.docker_compose: project_src: traefik state: present pull: true restarted: true when: traefik_copy_results.changed become: true - name: Update or start container community.docker.docker_compose: project_src: traefik state: present pull: true when: not traefik_copy_results.changed become: true