Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e513752c46 | ||
|
|
cfb392dc6a | ||
| f3f78c4ad5 | |||
| d1723db798 | |||
| ba8486017a | |||
| 37d8b17076 |
@@ -35,6 +35,8 @@ build:
|
||||
--pull
|
||||
--cache-from $CI_REGISTRY_IMAGE:latest
|
||||
--tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
||||
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
||||
--build-arg VCS_REF=$CI_COMMIT_SHORT_SHA
|
||||
./Docker/
|
||||
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
|
||||
|
||||
|
||||
@@ -1,7 +1,17 @@
|
||||
FROM python:3.9.4-alpine3.13
|
||||
|
||||
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
|
||||
LABEL version="1.7.0"
|
||||
|
||||
ARG BUILD_DATE
|
||||
ARG VCS_REF
|
||||
|
||||
LABEL org.label-schema.schema-version="1.0"
|
||||
LABEL org.label-schema.build-date=$BUILD_DATE
|
||||
LABEL org.label-schema.name="evanrich/py-eagle-mqtt"
|
||||
LABEL org.label-schema.description="Python Rainforest Eagle to MQTT Application"
|
||||
LABEL org.label-schema.vcs-url="https://github.com/evanrich/py-eagle-mqtt"
|
||||
LABEL org.label-schema.vcs-ref=$VCS_REF
|
||||
LABEL org.label-schema.vendor="Evan Richardson"
|
||||
LABEL org.label-schema.docker.cmd="docker run --name=py-eagle-mqtt -e MQTT_BROKER_IP=<IP> -e MQTT_BROKER_PORT=1883 -p 22042:22042 -d evanrich/py-eagle-mqtt"
|
||||
|
||||
WORKDIR /app
|
||||
COPY requirements.txt /app
|
||||
|
||||
@@ -1,8 +1,17 @@
|
||||
# py-eagle-mqtt
|
||||
|
||||
Python3 based Docker for Eagle to MQTT reader
|
||||
|
||||
I have only ported this into a dockerfile, as well as made some changes to code for security or other purposes. All Original code is credit to [Ted Drain - TD22057](https://github.com/TD22057/T-Home).
|
||||
|
||||
This project utilizes the following tools:
|
||||
|
||||
[](https://github.com/semantic-release/semantic-release)
|
||||
[]()
|
||||
[]()
|
||||
[]()
|
||||
[]()
|
||||
|
||||
## UPDATES:
|
||||
|
||||
2020-04-06: Moved Updates to a CHANGELOG.md file to clean this up.
|
||||
|
||||
Reference in New Issue
Block a user