added loki, prometheus, promtail, statist
This commit is contained in:
7
loki/Dockerfile
Normal file
7
loki/Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM centos:7
|
||||
RUN yum update -y && yum install -y unzip && yum clean all
|
||||
RUN curl -O -L "https://github.com/grafana/loki/releases/download/v2.1.0/loki-linux-amd64.zip" && unzip loki-linux-amd64.zip -d /loki && rm loki-linux-amd64.zip && cd /loki && chmod a+x "loki-linux-amd64"
|
||||
COPY config.yaml /loki
|
||||
COPY docker-entrypoint.sh /
|
||||
RUN chmod +x /docker-entrypoint.sh
|
||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
||||
Reference in New Issue
Block a user