Compare commits

...

2 Commits

Author SHA1 Message Date
9e8331324a chore(release): 1.0.1 2022-12-20 15:45:08 +01:00
3bb67f679c fix: Docker compose and configuration. 2022-12-20 15:44:55 +01:00
4 changed files with 11 additions and 2 deletions

View File

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.0.1](https://git.laurivan.com/Dev/ansible-role-knx-monitor/compare/v1.0.0...v1.0.1) (2022-12-20)
### Bug Fixes
* Docker compose and configuration. ([3bb67f6](https://git.laurivan.com/Dev/ansible-role-knx-monitor/commit/3bb67f679c4566549a0ba533f6e5e3518e4c3267))
## 1.0.0 (2022-12-20) ## 1.0.0 (2022-12-20)

View File

@ -15,7 +15,8 @@ Role Variables
knx_monitor: knx_monitor:
docker_version: "latest" docker_version: "latest"
gateway_ip: "localhost" gateway_ip: "localhost"
topology_file: "{{ \".\" | | expanduser | realpath }}/topology.csv" config_path: "~/knx-monitor"
topology_source: "./topology.csv"
influx: influx:
url: "http://localhost:8086" url: "http://localhost:8086"

View File

@ -7,7 +7,7 @@ services:
restart: unless-stopped restart: unless-stopped
volumes: volumes:
# - {{ knx_monitor.config_path | expanduser | realpath }}/export-addresses.csv:/code/knx/export-addresses.csv:ro - {{ knx_monitor.config_path | expanduser | realpath }}/export-addresses.csv:/code/knx/export-addresses.csv:ro
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
env_file: env_file:

View File

@ -1,4 +1,5 @@
KNX_GATEWAY_IP={{ knx_monitor.gateway_ip }} KNX_GATEWAY_IP={{ knx_monitor.gateway_ip }}
KNX_TOPOLOGY=/code/knx/export-addresses.csv
INFLUX_BUCKET={{ knx_monitor.influx.bucket }} INFLUX_BUCKET={{ knx_monitor.influx.bucket }}
INFLUX_ORG={{ knx_monitor.influx.org }} INFLUX_ORG={{ knx_monitor.influx.org }}