summaryrefslogtreecommitdiffstats
path: root/Dockerfile.armv7hf
diff options
context:
space:
mode:
authorFederico Ceratto <federico.ceratto@gmail.com>2017-12-19 23:39:27 +0000
committerFederico Ceratto <federico.ceratto@gmail.com>2017-12-19 23:39:27 +0000
commit6abdfdead1326ccca98dc4cf415c216f1bf25400 (patch)
tree70b803bd499fd45e89627c1b45b90ddf20e8e959 /Dockerfile.armv7hf
parentRelease v. 1.8.0+dfsg-1 to Unstable (diff)
parentNew upstream version 1.9.0+dfsg (diff)
downloadnetdata-6abdfdead1326ccca98dc4cf415c216f1bf25400.tar.xz
netdata-6abdfdead1326ccca98dc4cf415c216f1bf25400.zip
Update upstream source from tag 'upstream/1.9.0+dfsg'
Update to upstream version '1.9.0+dfsg' with Debian dir 28b8242a05f9ad26cd1cdbcf078be754fc7d6251
Diffstat (limited to 'Dockerfile.armv7hf')
-rw-r--r--Dockerfile.armv7hf19
1 files changed, 19 insertions, 0 deletions
diff --git a/Dockerfile.armv7hf b/Dockerfile.armv7hf
new file mode 100644
index 000000000..2591748a9
--- /dev/null
+++ b/Dockerfile.armv7hf
@@ -0,0 +1,19 @@
+# author : titpetric
+# original: https://github.com/titpetric/netdata
+
+FROM resin/armv7hf-debian:jessie
+
+RUN [ "cross-build-start"]
+
+ADD . /netdata.git
+
+RUN cd ./netdata.git && chmod +x ./docker-build.sh && sync && sleep 1 && ./docker-build.sh
+
+WORKDIR /
+
+ENV NETDATA_PORT 19999
+EXPOSE $NETDATA_PORT
+
+CMD /usr/sbin/netdata -D -s /host -p ${NETDATA_PORT}
+
+RUN [ "cross-build-end"]