initial commit with redbot and vaultwarden migrated

This commit is contained in:
TÁNCZOS Vilmos Zsombor 2025-05-05 00:24:35 +02:00
commit 1a2d589096
18 changed files with 267 additions and 0 deletions

View file

@ -0,0 +1,21 @@
- name: Add Docker repo
ansible.builtin.yum_repository:
name: docker
description: Docker Fedora repo
baseurl: https://download.docker.com/linux/fedora/$releasever/$basearch/stable/
gpgkey: https://download.docker.com/linux/fedora/gpg
- name: Install Docker
ansible.builtin.dnf5:
name:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose-plugin
state: present
- name: Enable and start Docker service
ansible.builtin.service:
name: docker
enabled: true
state: started