Add a basic SOCKS proxy

This commit is contained in:
Jake Howard
2020-05-05 21:55:14 +01:00
parent bc545b742a
commit 54ec7f2332
4 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,32 @@
- name: Include socks variables
include_vars: socks.yml
- name: Create install directory
file:
path: /opt/3proxy
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/3proxy/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: Cycle container
docker_compose:
project_src: /opt/3proxy
pull: true
remove_orphans: true
remove_volumes: true
state: "{{ item }}"
when: compose_file.changed
loop:
- absent
- present