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

23 lines
749 B
YAML
Raw Normal View History

2020-12-24 14:27:31 +01:00
---
- 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=roles/nginx-docker-reverse-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
2020-12-24 14:27:31 +01:00
notify: restart nginx
- name: create data folder
file:
path: "{{conf_d_docker_path}}"
state: directory
2023-12-05 18:41:46 +01:00
mode: 0755
2020-12-24 14:27:31 +01:00
- name: "create {{default_conf_docker_path}}"
template: src="default.conf" dest="{{default_conf_docker_path}}"
2023-12-05 18:41:46 +01:00
- name: add docker-compose.yml
template:
src: "docker-compose.yml.j2"
dest: "{{docker_compose_instance_directory}}docker-compose.yml"
notify: recreate matomo