diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ebe663a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM alpine:latest +# +ARG PUID=1000 +ARG PGID=1000 +# +RUN set -xe \ + && addgroup -g ${PGID} -S mosquitto \ + && adduser -u ${PUID} -G mosquitto -h /mosquitto/ -D mosquitto \ + && apk add --no-cache --purge -uU mosquitto mosquitto-libs mosquitto-clients + +WORKDIR /workspace +COPY root/defaults/temp2mqtt /workspace + +CMD [ "sh", "./temp2mqtt" ] diff --git a/data/config/.gitkeep b/data/config/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/data/data/.gitkeep b/data/data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ab91559 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +--- +version: "3.8" +services: + temp2mqtt: + image: sthopeless/temp2mqtt:latest + container_name: temp2mqtt + network_mode: bridge + environment: + - PGID=1000 + - PUID=1000 + - PROXMOX_NAME=Icecrown + - MQTT_BROKER=mqtt_ip + - USERNAME=mqtt_username + - PASSWORD=mqtt_password + volumes: + - /sys/class/thermal/thermal_zone2/temp:/temp:ro + restart: unless-stopped + labels: + - com.centurylinklabs.watchtower.enable=true diff --git a/root/defaults/temp2mqtt b/root/defaults/temp2mqtt new file mode 100644 index 0000000..d32aae1 --- /dev/null +++ b/root/defaults/temp2mqtt @@ -0,0 +1,19 @@ +#!/bin/bash +# ___ _ _ _ __ +# / __|| |_ | |_ ___ | '_ \ ___ +# \__ \| _|| \ / _ \| .__// -_) +# |___/ \__||_||_|\___/|_| \___| + +MQTT_BROKER="${MQTT_BROKER:-192.168.100}"; +USERNAME="${USERNAME:-mosquitto}"; +PASSWORD="${PASSWORD:-insecurebydefault}"; +PROXMOX_NAME="${PROXMOX_NAME:-pve}"; + +tempvar=$(cat /temp); +TEMP=$(expr $tempvar / 1000) + +while : + do + mosquitto_pub -h "${MQTT_BROKER}" -u "${USERNAME}" -P "${PASSWORD}" -t proxmox/"${PROXMOX_NAME}"/cpu_temp -m "${TEMP}" + sleep 1m +done \ No newline at end of file diff --git a/root/etc/cont-init.d/10-setup b/root/etc/cont-init.d/10-setup new file mode 100755 index 0000000..2f3164a --- /dev/null +++ b/root/etc/cont-init.d/10-setup @@ -0,0 +1,29 @@ +#!/usr/bin/with-contenv bash + +MQTT_BROKER="${MQTT_BROKER:-192.168.100}"; +USERNAME="${USERNAME:-mosquitto}"; +PASSWORD="${PASSWORD:-insecurebydefault}"; +PROXMOX_NAME="${PROXMOX_NAME:-pve}"; + +TEMP=$(clear;sensors | sed -n 9p | sed 's/^[^=:]*[=:]//' | sed -r 's/\s+//g'); + +[[ ! -f /mosquitto/config/temp2mqtt ]] && touch /mosquitto/config/temp2mqtt; +cat <> /mosquitto/config/temp2mqtt +#!/bin/bash +# ___ _ _ _ __ +# / __|| |_ | |_ ___ | '_ \ ___ +# \__ \| _|| \ / _ \| .__// -_) +# |___/ \__||_||_|\___/|_| \___| + +MQTT_BROKER="${MQTT_BROKER:-192.168.100}"; +USERNAME="${USERNAME:-mosquitto}"; +PASSWORD="${PASSWORD:-insecurebydefault}"; +PROXMOX_NAME="${PROXMOX_NAME:-pve}"; + +TEMP=$(clear;sensors | sed -n 9p | sed 's/^[^=:]*[=:]//' | sed -r 's/\s+//g'); + +mosquitto_pub -h "${MQTT_BROKER}" -u "${USERNAME}" -P "${PASSWORD}" -t proxmox/"${PROXMOX_NAME}"/cpu_temp -m "${TEMP}" +EOF + +chown -R mosquitto:mosquitto /mosquitto/; +chmod +x /mosquitto/config/temp2mqtt; \ No newline at end of file diff --git a/root/etc/services.d/mosquitto/run b/root/etc/services.d/mosquitto/run new file mode 100644 index 0000000..3648198 --- /dev/null +++ b/root/etc/services.d/mosquitto/run @@ -0,0 +1,5 @@ +#!/usr/bin/with-contenv bash + +cd /mosquitto/config || exit 1; + +while /mosquitto/config/temp2mqtt; do sleep 10; done \ No newline at end of file