This repository has been archived on 2024-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
cpx-ansible/roles/docker_services/tasks/config.yml

37 lines
846 B
YAML
Raw Normal View History

2023-04-20 21:34:25 +00:00
# vim: ft=yaml.ansible
---
- name: Create base directory for Docker volumes
ansible.builtin.file:
path: "{{ base_volume }}"
owner: root
mode: u=rwx,g=rx,o=rx
state: directory
- name: Copy Docker daemon config file
ansible.builtin.copy:
src: dockerd/daemon.json
dest: /etc/docker/daemon.json
owner: root
mode: u=rw,g=r,o=r
2023-04-26 20:45:41 +00:00
notify: reload-dockerd
2023-04-20 21:34:25 +00:00
2023-04-26 20:45:41 +00:00
- name: Flush handlers
ansible.builtin.meta: flush_handlers
2023-04-20 21:34:25 +00:00
- name: Create Docker network for services
community.docker.docker_network:
name: services
state: present
- name: Create Docker network for Tor
community.docker.docker_network:
name: tor
state: present
- name: Copy nginx.conf to shared location
ansible.builtin.copy:
src: shared/nginx.conf
dest: "{{ base_volume }}/nginx.conf"
owner: root
mode: u=rw,g=r,o=r