Skip to content

Commit 9ff499d

Browse files
committed
fix(ansible): pin Docker to 26.04 (resolute) version
Re-pin docker-ce/docker-ce-cli to the Ubuntu 26.04 (Resolute Raccoon) build of the current stable engine: 5:29.5.3-1~ubuntu.26.04~resolute. containerd.io is left to dependency resolution so it tracks a compatible version automatically. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V6sRimvheRyuCPYgsL68qa
1 parent b680db9 commit 9ff499d

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

setup_vps/ansible/install-docker.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
- name: Install Docker on Ubuntu
3+
vars:
4+
docker_version: "5:29.5.3-1~ubuntu.26.04~resolute"
5+
36
hosts: all
47
become: yes
58
tasks:
@@ -43,8 +46,8 @@
4346
- name: Install Docker CE
4447
apt:
4548
name:
46-
- docker-ce
47-
- docker-ce-cli
49+
- "docker-ce={{ docker_version }}"
50+
- "docker-ce-cli={{ docker_version }}"
4851
- containerd.io
4952
- docker-buildx-plugin
5053
- docker-compose-plugin

0 commit comments

Comments
 (0)