move contents from sub directory to root

This commit is contained in:
2023-10-06 17:49:16 +02:00
parent b4b632827d
commit a2546ce72e
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
- name: install required packages
become: true
ansible.builtin.apt:
name:
- docker.io
- curl
- ca-certificates
- gnupg
state: latest
- name: install docker compose plugin (standalone)
become: true
ansible.builtin.get_url:
url: https://github.com/docker/compose/releases/download/v2.20.3/docker-compose-linux-x86_64
dest: /usr/local/bin/docker-compose
mode: '0555'
owner: root
group: root