mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-25 14:33:24 +00:00
We tried to to build an OS with all the TICK stack (https://www.influxdata.com/time-series-platform/): InfluxDB, Chronograf, Kapacitor, Telegraf. Very easy but I was curious to try it out after few months just reading about linuxkit. You can build the image with: ``` linuxkit build --format iso-bios examples/influxdb-os ``` And you can run it: ``` linuxkit run qemu -iso influxdb-os.iso -publish 8888:8888/tcp -publish 8086:8086/tcp ``` After that you can open your browser on `localhost:8888` to see Chronograf (the dashboard up and running). All the services are configured to talk with each other. Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com> Co-authored-by: Lorenzo Fontana <lo@linux.com>