From a130ee43cda68d8be42bb0a35f593c26bdfd39d6 Mon Sep 17 00:00:00 2001 From: xcad2k <28359525+xcad2k@users.noreply.github.com> Date: Sun, 2 Jan 2022 13:17:26 +0100 Subject: [PATCH] influxdb updates --- docker-compose/influxdb/README.md | 10 +++++++++- docker-compose/influxdb/docker-compose.yml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docker-compose/influxdb/README.md b/docker-compose/influxdb/README.md index a0f922d..4ddd87b 100644 --- a/docker-compose/influxdb/README.md +++ b/docker-compose/influxdb/README.md @@ -1,6 +1,14 @@ # Installation -TODO: ... +## Deployment + +Copy the `docker-compose.yml` template into your project folder and start the container. + +## Configuration + +The initial configuration can be done automatically through docker instructions, or post-installation via the InfluxDB UI or CLI setup. + +*For more info visit:* [Official InfluxDB Installation Documentation](ttps://docs.influxdata.com/influxdb/v2.1/install/) # Best-Practices & Post-Installation diff --git a/docker-compose/influxdb/docker-compose.yml b/docker-compose/influxdb/docker-compose.yml index 5c8602b..3494b1c 100644 --- a/docker-compose/influxdb/docker-compose.yml +++ b/docker-compose/influxdb/docker-compose.yml @@ -9,6 +9,7 @@ services: volumes: - influxdb-data:/var/lib/influxdb2 # # Automatically setup influxdb + # TODO: no tested... # environment: # - DOCKER_INFLUXDB_INIT_MODE=setup # - DOCKER_INFLUXDB_INIT_USERNAME=my-user @@ -20,5 +21,4 @@ services: # # (optional) Admin Token # - DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token # # (optional) Configure TLS - # TODO: no tested # command: influxd --tls-cert=/etc/ssl/cert.pem --tls-key=/etc/ssl/cert-key.pem \ No newline at end of file