don't manage syncthing configuration using Docker
expose syncthing config on NFS
This commit is contained in:
parent
36b2b48692
commit
bf178f61c8
7 changed files with 12 additions and 334 deletions
|
@ -1,27 +1,3 @@
|
|||
- name: Create cert.pem config
|
||||
docker_config:
|
||||
name: syncthing_cert
|
||||
data: "{{ lookup('file', '{{ role_path }}/cert.pem') }}"
|
||||
use_ssh_client: true
|
||||
rolling_versions: true
|
||||
register: cert
|
||||
|
||||
- name: Create key.pem config
|
||||
docker_config:
|
||||
name: syncthing_key
|
||||
data: "{{ lookup('file', '{{ role_path }}/key.pem') }}"
|
||||
use_ssh_client: true
|
||||
rolling_versions: true
|
||||
register: key
|
||||
|
||||
- name: Create config.xml config
|
||||
docker_config:
|
||||
name: syncthing_config
|
||||
data: "{{ lookup('template', '{{ role_path }}/config.xml.j2') }}"
|
||||
use_ssh_client: true
|
||||
rolling_versions: true
|
||||
register: config
|
||||
|
||||
- name: Deploy Docker stack
|
||||
docker_stack:
|
||||
name: syncthing
|
||||
|
|
Reference in a new issue