computer-playbook/roles/docker-nextcloud/tasks/main.yml

34 lines
978 B
YAML

---
- name: recieve {{domain}} certificate
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
- name: configure {{domain}}.conf
template:
src: "templates/nextcloud.conf.j2"
dest: "/etc/nginx/conf.d/{{domain}}.conf"
notify: restart nginx
- name: "create {{path_docker_volumes}}nextcloud/"
file:
path: "{{path_docker_volumes}}nextcloud"
state: directory
mode: 0755
- name: configure nginx.conf
template:
src: "templates/nginx.conf.j2"
dest: "{{path_docker_volumes}}nextcloud/nginx.conf"
notify: recreate nextcloud
- name: "create {{path_docker_compose_files}}nextcloud/"
file:
path: "{{path_docker_compose_files}}nextcloud/"
state: directory
mode: 0755
- name: add docker-compose.yml
template:
src: docker-compose.yml.j2
dest: "{{path_docker_compose_files}}nextcloud/docker-compose.yml"
notify: recreate nextcloud