vpn
This commit is contained in:
13
roles/xray-vps-setup/tasks/install_docker.yml
Normal file
13
roles/xray-vps-setup/tasks/install_docker.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
- 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
|
||||
Reference in New Issue
Block a user