Files
ansible/roles/xray-vps-setup/tasks/install_docker.yml
Gabenov Stanislav a6d2623802 vpn
2026-02-09 20:42:24 +03:00

14 lines
399 B
YAML

- name: Add Docker GPG apt Key
ansible.builtin.apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
state: present
- name: Add Docker Repository
ansible.builtin.apt_repository:
repo: deb https://download.docker.com/linux/ubuntu focal stable
state: present
- name: Update install docker-ce
ansible.builtin.apt:
name: docker-ce
state: latest
update_cache: true