where is the persistent data in the new influxdb 2.0 docker alphas? it looks like the path has changed since 1.x (/var/lib/influxdb)
what do I need to map with docker volumes?
where is the persistent data in the new influxdb 2.0 docker alphas? it looks like the path has changed since 1.x (/var/lib/influxdb)
what do I need to map with docker volumes?
In the docs you can see some parms influxd - InfluxDB service | InfluxDB OSS 2.0 Documentation
so I asume that exporting ~/.influxdbv2 may works, but docker doesn’t allow relative paths so with absolute it works.
docker run -p 9999:9999 -v /some/local/path/influx2:/root/.influxdbv2 Quay
Check my answer on a similar thread: Where is the docker data stored? - #2 by bin