Update to running setup.

This commit is contained in:
Lars Hahn 2026-06-16 15:09:11 +02:00
parent 9c6047b3bb
commit 30b9f8cf29
2 changed files with 20 additions and 7 deletions

View File

@ -0,0 +1,2 @@
install_date: 'Do 14 Mai 2026 19:50:51 '
version: ''

View File

@ -9,19 +9,30 @@
- apt-transport-https
- ca-certificates
- gnupg2
- software-properties-common
- curl
# Docker
- name: install docker repository key
apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
- name: Create apt keyrings directory
file:
path: /etc/apt/keyrings
state: directory
mode: '0755'
- name: install docker repository
- name: Download Docker GPG key
get_url:
url: https://download.docker.com/linux/debian/gpg
dest: /etc/apt/keyrings/docker.asc
mode: '0644'
- name: Add Docker repository for Debian 13 (use bookworm)
apt_repository:
repo: "deb [arch={{ ansible_kernel.split('-')[-1] }}] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable"
repo: "deb [arch=arm64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian bookworm stable"
state: present
filename: docker
- name: Update apt cache
apt:
update_cache: yes
- name: install docker (docker-ce + docker-ce-cli)
apt: