Use FQCNs. (#1180)

This commit is contained in:
Felix Fontein
2025-10-25 10:12:21 +02:00
committed by GitHub
parent be000755fc
commit b24bce77b6
196 changed files with 3289 additions and 3289 deletions
@@ -7,20 +7,20 @@
connection: local
tasks:
- name: Setup docker
include_role:
ansible.builtin.include_role:
name: setup_docker
- name: Setup Docker Python deps
import_role:
ansible.builtin.import_role:
name: setup_docker_python_deps
# There seems to be no better way to install docker-machine. At least I couldn't find any packages for RHEL7/8.
- name: Download docker-machine binary
vars:
docker_machine_version: "0.16.1"
get_url:
ansible.builtin.get_url:
url: "https://github.com/docker/machine/releases/download/v{{ docker_machine_version }}/docker-machine-{{ ansible_system }}-{{ ansible_userspace_architecture }}"
dest: /tmp/docker-machine
- name: Install docker-machine binary
command: install /tmp/docker-machine /usr/bin/docker-machine
ansible.builtin.command: install /tmp/docker-machine /usr/bin/docker-machine
become: true