Capturing containers running directly on Node

This commit is contained in:
2026-08-05 16:58:18 -05:00
parent 08f5a533df
commit a7c8d6471b
2 changed files with 17 additions and 1 deletions
+10
View File
@@ -13,6 +13,8 @@
- qemu-base
- qemu-emulators-full
- ddrescue
- docker
- python-requests
state: present
- name: Copy VM definitions
@@ -69,3 +71,11 @@
name: "{{ item }}-vm.service"
state: started
enabled: yes
- name: Enable containers
become: yes
community.docker.docker_container:
name: "{{ item.key }}"
image: '{{ item.value }}'
state: started
with_dict: "{{ active_containers }}"