Skip to content

Commit 1fa45b6

Browse files
committed
Change to alma9 due to issues with later ubuntu and some minor fixes
1 parent 105c374 commit 1fa45b6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This repository will guide you how to setup `docker` command to be used directly
1313
Install `docker` client by running the following inside `bash`:
1414

1515
```console
16-
wget -O docker-cli.tgz -q https://download.docker.com/linux/static/stable/x86_64/docker-24.0.5.tgz \
16+
wget -O docker-cli.tgz -q https://download.docker.com/linux/static/stable/x86_64/docker-25.0.4.tgz \
1717
&& tar -zxf docker-cli.tgz docker/docker \
1818
&& rm docker-cli.tgz \
1919
&& sudo cp docker/docker /usr/local/bin/docker \

Diff for: Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Vagrant.configure("2") do |config|
138138
ansible.become = true
139139
ansible.galaxy_role_file = yaml_config['ansible_requirements']
140140
ansible.galaxy_roles_path = "/etc/ansible/roles"
141-
ansible.galaxy_command = "sudo ansible-galaxy install --role-file=%{role_file} --roles-path=%{roles_path} --force"
141+
ansible.galaxy_command = "sudo $(which ansible-galaxy) install --role-file=%{role_file} --roles-path=%{roles_path} --force"
142142
ansible.playbook = yaml_config['ansible_playbook']
143143
ansible.inventory_path = "ansible/hosts"
144144
ansible.limit = "docker"

Diff for: ansible/requirements.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
- src: haxorof.docker_ce
1+
roles:
2+
- name: haxorof.docker_ce

Diff for: default-config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#vm_box_url: "file:///...json"
2-
vm_box: "generic/ubuntu2004"
2+
vm_box: "generic/alma9"
33
# Ansible Playbook to run
44
ansible_playbook: "ansible/setup-docker.yml"
55
# Ansible Galaxy requirements file

0 commit comments

Comments
 (0)