asmuth / clip

Create charts from the command line
https://clip-lang.org
Apache License 2.0
5.15k stars 387 forks source link

Dockerfile #197

Closed dnordberg closed 5 years ago

dnordberg commented 9 years ago

A dockerfile would be very useful to get everything up and running.

paulosuzart commented 9 years ago

+1

rbric commented 9 years ago

+1

asmuth commented 9 years ago

I think @dolfly is alread working on this https://github.com/dolfly/fnordmetric/blob/master/Dockerfile

rbric commented 9 years ago

Thanks for the fast response @paulasmuth @dolfly I've built the docker fine, but I can't start it.

dolfly commented 9 years ago

@rbric I've built it on docker.com. you can pull that .

docker pull dolfly/fnordmetric

or , give me the detail log

asmuth commented 9 years ago

Added instructions for running FnordMetric Server via Docker to the documentation: http://fnordmetric.io/documentation/installation/

To run FnordMetric Server using docker:

$ sudo mkdir -p /var/lib/fnordmetric-data
$ sudo docker run -p 8080:8080 -p 8125:8125/udp -v /var/lib/fnordmetric-data:/data/fnordmetric -t fnordmetric/fnordmetric-server

To build a Docker Image for FnordMetric Server, use the included dockerfile:

$ git clone https://github.com/paulasmuth/fnordmetric.git && cd fnordmetric
$ sudo docker -t myrepo/fnordmetric-server build .
dnordberg commented 9 years ago

Thanks, this is great!