Podman turnkey container where you can test access to the influxdb server using bridge C libraries.
To build the image, just run:
$ podman build -t podman-influxdb .Once you have the image, you can run the container:
$ podman run -d --rm --name influxtest -it localhost/podman-influxdb bashIt is possible to enter the running container:
$ podman exec -it influxtest bashTo interact with influxdb through the bridging libraries in C, use the test C program in
/opt/git/c-influxdb-exampleThe program must be compiled. When run, the program writes a point to the
temperature_db database in the local influxdb.