remove host mode and add -listen-address parameter

This commit is contained in:
Simon Rieger 2023-10-17 18:30:47 +02:00
parent 9b8ee4a931
commit 5705db4d60
3 changed files with 4 additions and 3 deletions

View file

@ -1,2 +1,3 @@
USERNAME=*****
HUE_URL=192.168.178.34
LISTEN_ADDRESS=127.0.0.1:9773

View file

@ -12,4 +12,4 @@ COPY --from=build /hue_exporter /hue_exporter
COPY hue_metrics.json ./
EXPOSE 9773
ENTRYPOINT [ "sh", "-c", "/hue_exporter -username ${USERNAME} -hue-url ${HUE_URL} -metrics-file hue_metrics.json" ]
ENTRYPOINT [ "sh", "-c", "/hue_exporter -username ${USERNAME} -hue-url ${HUE_URL} -metrics-file hue_metrics.json -listen-address ${LISTEN_ADDRESS}" ]

View file

@ -8,7 +8,7 @@ services:
dockerfile: ./Dockerfile
restart: unless-stopped
container_name: hue_exporter
network_mode: "host"
#network_mode: "host"
ports:
- 9773:9773
env_file: