Files
les-06/ansible/main.yml
2025-06-11 17:28:36 +00:00

18 lines
420 B
YAML

- 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"