-
Notifications
You must be signed in to change notification settings - Fork 102
/
Dockerfile
86 lines (71 loc) · 2.95 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Dockerfile for standalone usage
FROM debian:stretch-slim
RUN apt-get -y update
# Install Python
RUN apt-get -y install python3
RUN apt-get -y install apt-transport-https
RUN apt-get -y install curl
RUN apt-get -y install gnupg2
# Install Influx
RUN curl -sL https://repos.influxdata.com/influxdb.key | apt-key add -
RUN echo "deb https://repos.influxdata.com/debian stretch stable" | tee /etc/apt/sources.list.d/influxdb.list
RUN apt-get -y update
RUN apt-get -y install influxdb
# Install Grafana
RUN curl https://packages.grafana.com/gpg.key | apt-key add -
RUN echo "deb https://packages.grafana.com/oss/deb stable main" | tee /etc/apt/sources.list.d/grafana.list
RUN apt-get -y update
RUN apt-get -y install grafana
# Install Node
RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN apt-get install -y nodejs
# Install Grafana addons
RUN apt-get -y install git
WORKDIR /var/lib/grafana/plugins
RUN git clone https://github.com/lephisto/grafana-trackmap-panel
WORKDIR /var/lib/grafana/plugins/grafana-trackmap-panel
RUN git checkout v2.0.4-teslascraper
RUN npm install
RUN npm audit fix
RUN npm run build
RUN grafana-cli plugins install natel-discrete-panel
# Install Tesla API Scraper
RUN apt-get -y install python3-pip
WORKDIR /
RUN git clone https://github.com/lephisto/tesla-apiscraper
RUN pip3 install influxdb
RUN git clone https://github.com/tkrajina/srtm.py
WORKDIR srtm.py
RUN python3 ./setup.py install
WORKDIR /
# Configure it
WORKDIR tesla-apiscraper
RUN git checkout v2019.5
RUN cp config.py.dist config.py
# Create temp files for dashboard API calls
RUN echo '{"dashboard":' > /tmp/TeslaMetricsV2.json
RUN cat ./grafana-dashboards/TeslaMetricsV2.json >> /tmp/TeslaMetricsV2.json
RUN echo '}' >> /tmp/TeslaMetricsV2.json
RUN sed -i 's/\${DS_TESLA}/InfluxDB/g' /tmp/TeslaMetricsV2.json
# Install Grafana data source and dashboards
RUN service grafana-server start ; sleep 5 && \
curl -v -H 'Content-Type: application/json' -d @./grafana-datasources/influxdb.json http://admin:admin@localhost:3000/api/datasources && \
curl -v -H 'Content-Type: application/json' -d @/tmp/TeslaMetricsV2.json http://admin:admin@localhost:3000/api/dashboards/db && \
service grafana-server stop
RUN sed -i "s/a_influxpass = '<influxdbpassword>'/a_influx_pass = None/g" /tesla-apiscraper/config.py
RUN sed -i "s/a_influxuser = 'tesla'/a_influx_user = None/g" /tesla-apiscraper/config.py
# Define our startup script
RUN echo "#!/bin/bash" > /start.sh
RUN echo "sed -i \"s/<email>/\${TESLA_USERNAME}/g\" /tesla-apiscraper/config.py" >> /start.sh
RUN echo "sed -i \"s/<password>/\${TESLA_PASSWORD}/g\" /tesla-apiscraper/config.py" >> /start.sh
RUN echo "service influxdb start" >> /start.sh
RUN echo "influx -execute \"create database tesla\"" >>/start.sh
RUN echo "service grafana-server start" >> /start.sh
RUN echo "python3 /tesla-apiscraper/apiscraper.py" >> /start.sh
RUN chmod +x /start.sh
# Persist Influx Data
VOLUME ["/var/lib/influxdb"]
# Run it
EXPOSE 3000
EXPOSE 8023
CMD /start.sh