-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfix-dynamic-eq.yml
50 lines (43 loc) · 1.14 KB
/
fix-dynamic-eq.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
- hosts: homelab
vars:
application: fix-dynamic-eq
docker_network: "{{ networks.iot }}"
handlers:
- name: Restart
community.docker.docker_container:
name: "{{ application }}"
restart: true
comparisons:
'*': ignore
tasks:
- name: Create config folder
ansible.builtin.file:
path: "{{ config_directory }}"
state: directory
owner: "{{ common_user }}"
group: "{{ common_group }}"
mode: "0771"
- name: Copy calibration file
ansible.posix.synchronize:
src: "{{ files_directory }}/"
dest: "{{ config_directory }}/"
delete: true
owner: false
group: false
perms: false
notify: Restart
- name: Create container
ansible.builtin.include_role:
name: docker_container
vars:
image: pulento/fixdynamiceq:latest
command:
- npm
- run
- start
- --
- -f
- "{{ query('community.dns.lookup', 'denon-x3800h.' + common_local_tld) | first }}"
volumes:
- "{{ config_directory }}:/usr/src/app/rew"