mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 10:08:32 +01:00
feat: docker base role & opensearch
This commit is contained in:
13
roles/docker-base/tasks/main.yaml
Normal file
13
roles/docker-base/tasks/main.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
- name: Debian | Add GPG Keys
|
||||
apt_key:
|
||||
url: "https://download.docker.com/linux/debian/gpg"
|
||||
|
||||
- name: Debian | Add Repo Source
|
||||
apt_repository:
|
||||
repo: "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable"
|
||||
update_cache: yes
|
||||
|
||||
- name: Install docker-ce
|
||||
apt:
|
||||
name: docker-ce
|
||||
state: present
|
||||
Reference in New Issue
Block a user