Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e513752c46 | ||
|
|
cfb392dc6a | ||
| f3f78c4ad5 | |||
| d1723db798 | |||
| ba8486017a | |||
| 37d8b17076 | |||
|
|
da83d88229 | ||
|
|
00c95c42ea | ||
|
|
a72ac7a1df | ||
|
|
ffbde1eff5 | ||
| 1e58da7572 | |||
|
|
40ac8c5ada | ||
|
|
2c49af0f32 | ||
|
|
a4c715068d | ||
| 91b6464e8c | |||
| b9ad4e8ec1 |
@@ -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
|
||||
|
||||
@@ -81,7 +83,7 @@ release:
|
||||
- /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/
|
||||
script:
|
||||
- touch CHANGELOG.md
|
||||
- npm install @semantic-release/gitlab @semantic-release/changelog
|
||||
- npm install @semantic-release/gitlab @semantic-release/changelog @semantic-release/git
|
||||
- npx semantic-release
|
||||
artifacts:
|
||||
paths:
|
||||
|
||||
@@ -4,6 +4,8 @@ plugins:
|
||||
- - "@semantic-release/changelog"
|
||||
- changelogFile: CHANGELOG.md
|
||||
- "@semantic-release/gitlab"
|
||||
- - "@semantic-release/git"
|
||||
- assets: CHANGELOG.md
|
||||
branches:
|
||||
- "master"
|
||||
- "+([0-9])?(.{+([0-9]),x}).x"
|
||||
|
||||
16
CHANGELOG.md
16
CHANGELOG.md
@@ -1,9 +1,17 @@
|
||||
# Changelog
|
||||
## [1.7.2](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.1...v1.7.2) (2021-04-08)
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
### Bug Fixes
|
||||
|
||||
* Cleanup CHANGELOG.md since using new semantic-release format ([a72ac7a](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/a72ac7a1df91cb2231e38e8bbceb5ccf9c93328a))
|
||||
* fix asset info for git commit ([00c95c4](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/00c95c42ea98921a1b2da9d2069d41e8e32f34f5))
|
||||
|
||||
## [1.7.1](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/compare/v1.7.0...v1.7.1) (2021-04-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* refactor Dockerfile to improve build ([40ac8c5](https://gitlab.evanrichardsonphotography.com/erichardson/py-eagle-mqtt/commit/40ac8c5ada9b993f53b72dcc14b2d9b7cd183e2f))
|
||||
|
||||
## [1.6.10] - 2021-04-06
|
||||
|
||||
|
||||
@@ -1,17 +1,26 @@
|
||||
FROM python:3.9.3-alpine3.12
|
||||
|
||||
FROM python:3.9.4-alpine3.13
|
||||
LABEL maintainer="Evan Richardson (evanrich81[at]gmail.com)"
|
||||
LABEL version="1.6.6"
|
||||
|
||||
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 . /app
|
||||
COPY requirements.txt /app
|
||||
COPY ./src/conf/logrotate/tHome /etc/logrotate.d/
|
||||
ENV PYTHONPATH=/app/src/python
|
||||
RUN apk --update add --no-cache logrotate \
|
||||
&& pip3 install --no-cache-dir --upgrade pip \
|
||||
&& pip3 install --no-cache-dir -r requirements.txt
|
||||
#RUN rm -rf /var/cache/apk
|
||||
|
||||
COPY . /app
|
||||
CMD ["/app/src/bin/tHome-eagle.py", "-c", "/app/src/conf"]
|
||||
|
||||
EXPOSE 22042
|
||||
|
||||
@@ -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