docker images update

This commit is contained in:
havelight-ee
2023-06-20 19:51:12 +09:00
parent 813f1027b7
commit 3e93fa63e9
19 changed files with 551 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
---
- name: Gather Ansible Facts
ansible.builtin.setup:
- include: 00-amazon-os-main.yml
tags: amazon
when: ansible_facts.os_family == 'RedHat'
- include: 00-ubuntu-os-main.yml
tags: ubuntu
when: ansible_facts.os_family == 'Debian'
- include: 01-amazon-os-docker.yml
tags: cent-docker
when: ansible_facts.os_family == 'RedHat'
- include: 01-ubuntu-os-docker.yml
tags: ubuntu-docker
when: ansible_facts.os_family == 'Debian'