5c6a191660
For now, the default docker command includes the altert detail but not the obstruction detail, because that's what the old dishStatusInflux.py script had.
25 lines
858 B
Docker
25 lines
858 B
Docker
FROM python:3.9
|
|
LABEL maintainer="neurocis <neurocis@neurocis.me>"
|
|
|
|
RUN true && \
|
|
\
|
|
# Install GRPCurl
|
|
wget https://github.com/fullstorydev/grpcurl/releases/download/v1.8.0/grpcurl_1.8.0_linux_x86_64.tar.gz && \
|
|
tar -xvf grpcurl_1.8.0_linux_x86_64.tar.gz grpcurl && \
|
|
chown root:root grpcurl && \
|
|
chmod 755 grpcurl && \
|
|
mv grpcurl /usr/bin/. && \
|
|
rm grpcurl_1.8.0_linux_x86_64.tar.gz && \
|
|
\
|
|
# Install python prerequisites
|
|
pip3 install grpcio grpcio-tools paho-mqtt influxdb
|
|
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
# run crond as main process of container
|
|
ENTRYPOINT ["/bin/sh", "/app/entrypoint.sh"]
|
|
CMD ["dish_grpc_influx.py status alert_detail"]
|
|
|
|
# docker run -d --name='starlink-grpc-tools' -e INFLUXDB_HOST=192.168.1.34 -e INFLUXDB_PORT=8086 -e INFLUXDB_DB=starlink
|
|
# --net='br0' --ip='192.168.1.39' neurocis/starlink-grpc-tools dish_grpc_influx.py status alert_detail
|