This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/docker_services/tasks/services.yml

35 lines
931 B
YAML
Raw Normal View History

2022-12-22 19:18:27 +00:00
# vim: ft=yaml.ansible
2022-12-21 21:25:10 +00:00
---
- name: Create Docker network for services
community.docker.docker_network:
name: services
ipam_config:
- subnet: 172.16.0.0/16
gateway: 172.16.0.1
state: present
- name: Create Docker network for Pi-hole and WireGuard
community.docker.docker_network:
name: pihole_wireguard
ipam_config:
- subnet: 172.18.0.0/16
gateway: 172.18.0.1
state: present
- name: Create base directory for Docker volumes
ansible.builtin.file:
name: "{{ base_volume }}"
owner: root
mode: u=rwx,g=rx,o=rx
state: directory
2022-12-21 21:25:10 +00:00
- name: Deploy services
2023-03-22 18:31:21 +00:00
ansible.builtin.include_tasks: services/{{ item.key }}.yml
2023-01-03 21:30:22 +00:00
loop: "{{ services | dict2items }}"
2022-12-25 23:29:46 +00:00
when: single_service is not defined
2022-12-21 21:25:10 +00:00
- name: Deploy single service
2023-03-22 18:31:21 +00:00
ansible.builtin.include_tasks: services/{{ single_service }}.yml
2022-12-21 21:25:10 +00:00
when: single_service is defined and
2022-12-25 23:29:46 +00:00
single_service in services