12 lines
310 B
YAML
12 lines
310 B
YAML
- hosts: webservers
|
|
become: True
|
|
gather_facts: True
|
|
vars:
|
|
release_dir: /opt/publichealth
|
|
django_log_dir: /var/log/publichealth
|
|
ipv4_addresses: "{{ ansible_all_ipv4_addresses }}"
|
|
environment:
|
|
COMPOSE_FILE: "./docker-compose.yml"
|
|
COMPOSE_PROJECT_NAME: publichealth
|
|
roles:
|
|
- web
|