Docker installation
This commit is contained in:
parent
009993e3a0
commit
04f275eb6e
3
TODO
3
TODO
@ -2,5 +2,4 @@ Docker
|
||||
Redis
|
||||
Mysql
|
||||
|
||||
integration into wpconf
|
||||
wordpress download and config
|
||||
integration into wpconf
|
31
roles/install-docker/tasks/main.yml
Normal file
31
roles/install-docker/tasks/main.yml
Normal file
@ -0,0 +1,31 @@
|
||||
---
|
||||
- name: Install Docker prerequisites
|
||||
become: true
|
||||
apt:
|
||||
pkg:
|
||||
- gnupg
|
||||
- curl
|
||||
|
||||
- name: Prepare keyring folder
|
||||
become: true
|
||||
file:
|
||||
path: /etc/apt/keyrings
|
||||
state: directory
|
||||
mode: '0744'
|
||||
|
||||
- name: Get keyring
|
||||
become: true
|
||||
shell: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
|
||||
- name: Add repository
|
||||
become: true
|
||||
shell: echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-pluginsudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-pluginlinux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
|
||||
- name: Update repository and install docker
|
||||
apt:
|
||||
pkg:
|
||||
- docker-ce
|
||||
- docker-ce-cli
|
||||
- containerd.io
|
||||
- docker-compose-plugin
|
||||
update_cache: yes
|
@ -14,4 +14,11 @@
|
||||
- name: Delete the wordpress zip
|
||||
file:
|
||||
state: absent
|
||||
path: /var/www/{{ vhost_name }}/latest.zip
|
||||
path: /var/www/{{ vhost_name }}/latest.zip
|
||||
|
||||
- name: Setup permissions
|
||||
file:
|
||||
path: /var/www/{{ vhost_name }}
|
||||
owner: www-data
|
||||
group: www-data
|
||||
mode: '0644'
|
@ -11,4 +11,5 @@
|
||||
- role: configure-nginx
|
||||
- role: install-php
|
||||
- role: configure-php
|
||||
- role: install-wordpress
|
||||
- role: install-wordpress
|
||||
- role: install-docker
|
Loading…
Reference in New Issue
Block a user