Compare commits

...

2 commits

Author SHA1 Message Date
48c9e9053e Update docker.io/library/redis Docker tag to v8
Some checks failed
/ Ansible Lint (push) Failing after 48s
/ Ansible Lint (pull_request) Failing after 48s
2026-01-25 12:15:54 +00:00
664b9115b8 Fix warning
Some checks failed
/ Ansible Lint (push) Failing after 44s
2026-01-25 13:01:52 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ services:
restart: unless-stopped restart: unless-stopped
redis: redis:
image: docker.io/library/redis:7.4.7 image: docker.io/library/redis:8.4.0
ports: ports:
- "6379:6379" - "6379:6379"
volumes: volumes:

View file

@ -9,7 +9,7 @@
- name: Ensure Docker APT repository is added - name: Ensure Docker APT repository is added
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/docker.asc] https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable" repo: "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/docker.asc] https://download.docker.com/linux/debian {{ ansible_facts['distribution_release'] }} stable"
filename: docker filename: docker
state: present state: present
become: true become: true