This repository has been archived on 2020-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
homebase/deploy.d/plays/predeploy.yml

28 lines
608 B
YAML

---
- name: Open up the Dat port
dokku_ports:
app: "{{ dokku.app }}"
mappings:
- "http:{{ config.vars.dat_port }}:{{ config.vars.dat_port }}"
state: present
- name: "Allow access to {{ config.vars.dat_port }} on the firewall"
become: true
ufw:
rule: allow
port: "{{ config.vars.dat_port }}"
- name: "Reload the firewall to enable {{ config.vars.dat_port }}"
become: true
service:
name: ufw
state: restarted
- name: Create homebase application directories
become: true
file:
path: /var/lib/homebase
state: directory
owner: dokku
group: dokku