Files
les-06/ansible/main.yml
Ditmar Visser 24e3313331
Some checks failed
Provision & Configure / Terraform Apply (push) Has been cancelled
feat: install docker and start hello world container
2025-06-05 20:26:02 +00:00

17 lines
398 B
YAML

- name: Configure Docker all hosts
hosts: all
become: true
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"