1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-01 22:41:47 +02:00
Files
dockerfiles/influxdb

influxdb

InfluxDB is an open source distributed time series database with no external dependencies. It's useful for recording metrics, events, and performing analytics.

up and running

$ docker-compose up -d
$ docker-compose exec influxdb bash
>>> influx setup \
  --username USERNAME \
  --password PASSWORD \
  --token TOKEN \
  --org ORG_NAME \
  --bucket BUCKET_NAME \
  --force