- name: Configure Docker all hosts hosts: all become: true gather_facts: false roles: - geerlingguy.pip - docker vars: pip_install_packages: - name: six tasks: - name: Manually gather facts after 'six' is installed ansible.builtin.setup: - 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"