added loki, prometheus, promtail, statist

This commit is contained in:
2021-03-14 20:57:44 +01:00
parent 89b7fd0747
commit 1d8d30a8ab
18 changed files with 509 additions and 0 deletions

8
statist/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM centos:7
RUN yum update -y && yum clean all
RUN curl -sL https://rpm.nodesource.com/setup_14.x | bash - && yum install -y nodejs
COPY statist /statist
COPY docker-entrypoint.sh /
WORKDIR /statist
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["node","index.js"]