mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
234f0e4f79
Docker-DCO-1.1-Signed-off-by: Erik Hollensbe <github@hollensbe.org> (github: erikh)
11 lines
416 B
Text
11 lines
416 B
Text
(from "ubuntu:14.04")
|
|
(run "apt-get update && apt-get install wget -y")
|
|
(run "wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb")
|
|
(run "dpkg -i influxdb_latest_amd64.deb")
|
|
(run "rm -r /opt/influxdb/shared")
|
|
(volume "/opt/influxdb/shared")
|
|
(cmd "/usr/bin/influxdb --pidfile /var/run/influxdb.pid -config /opt/influxdb/shared/config.toml")
|
|
(expose "8083")
|
|
(expose "8086")
|
|
(expose "8090")
|
|
(expose "8099")
|