- name: Configure Docker all hosts hosts: all become: true gather_facts: false roles: - docker tasks: - name: Delete existing hello world container community.docker.docker_container: name: "les-06" state: absent - name: Start hello world container community.docker.docker_container: name: "les-06" image: "gitea.ditmarvisser.net/hbo-ict/les-06:latest"