initial commit
This commit is contained in:
commit
70975c2454
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM ubuntu:bionic
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y wget sudo && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
wget -qO /tmp/influx.deb https://dl.influxdata.com/influxdb/releases/influxdb_1.6.1_amd64.deb && \
|
||||
dpkg -i /tmp/influx.deb && \
|
||||
rm /tmp/influx.deb
|
||||
|
||||
ADD start /start
|
||||
|
||||
VOLUME /var/lib/influxdb/
|
||||
EXPOSE 8086 8088
|
||||
|
||||
ENTRYPOINT ["/start"]
|
Loading…
x
Reference in New Issue
Block a user