11 lines
384 B
YAML
11 lines
384 B
YAML
# vim: ft=yaml.ansible
|
|
---
|
|
- name: Deploy snowflake-proxy Docker container
|
|
community.docker.docker_container:
|
|
name: snowflake-proxy
|
|
state: "{{ 'absent' if stop is defined and stop else 'started' }}"
|
|
restart: "{{ stop is undefined or not stop }}"
|
|
image: thetorproject/snowflake-proxy:{{ services.snowflake.version }}
|
|
restart_policy: always
|
|
network_mode: host
|