Ident samples
This commit is contained in:
parent
6184c0bf3d
commit
02db9cc19c
47 changed files with 2660 additions and 215 deletions
15
tutorial/docker-orchestration/misc/chronograf/Dockerfile
Normal file
15
tutorial/docker-orchestration/misc/chronograf/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
FROM debian
|
||||
|
||||
ENV CHRONOGRAF_VERSION 1.0.0
|
||||
RUN apt-get update && apt-get install -y wget && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
|
||||
wget -q https://dl.influxdata.com/chronograf/releases/chronograf_${CHRONOGRAF_VERSION}_amd64.deb && \
|
||||
dpkg -i chronograf_${CHRONOGRAF_VERSION}_amd64.deb && \
|
||||
rm -f chronograf_${CHRONOGRAF_VERSION}_amd64.deb
|
||||
COPY chronograf.conf /etc/chronograf/chronograf.conf
|
||||
|
||||
EXPOSE 10000
|
||||
|
||||
VOLUME /var/lib/chronograf
|
||||
|
||||
CMD ["/opt/chronograf/chronograf"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue