neuro_ansible/yaml_sub/install_docker.yaml
2024-04-04 13:54:30 +02:00

37 lines
1,018 B
YAML

---
- name: remove other files
ansible.builtin.include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo
ansible.builtin.import_tasks: yaml_sub/myrepo_data.yaml
- name: install docker rpm
ansible.builtin.dnf:
name: "docker-ce,docker-ce-cli,docker-ce-rootless-extras,docker-buildx-plugin,docker-compose-plugin,python3,python3-pip,python3-requests"
state: latest
update_cache: true
skip_broken: true
nobest: false
allowerasing: true
enablerepo: "docker-ce-stable"
- name: make sure docker service unit is started
ansible.builtin.systemd_service:
state: started
name: docker
enabled: true
- name: Create portainer agent container
community.docker.docker_container:
name: portaineragent
image: portainer/agent:2.19.4
state: started
recreate: yes
restart_policy: always
published_ports:
- "9001:9001/tcp"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes