summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 000000000..955befb54
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,15 @@
+# author : titpetric
+# original: https://github.com/titpetric/netdata
+
+FROM debian:jessie
+
+ADD docker-build.sh /docker-build.sh
+
+RUN 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}