influxdata/docs-v2

The document `Get started with InfluxDB 3 Core` should mention that the docker image of Influxdb 3 core can expose port `8181`

Closed this issue · 1 comments

  • The document Get started with InfluxDB 3 Core should mention that the docker image of Influxdb 3 core can expose port 8181. The current documentation does not seem to mention the existence of port 8181 in the docker image.
  • Image
  • The test results of a series of unit tests I conducted at https://github.com/linghengqian/influxdb-3-core-jdbc-test show that port 8181 includes a number of Restful API ports and Arrow Flight protocol ports.
    @Container
    private final GenericContainer<?> container = new GenericContainer<>("quay.io/influxdb/influxdb3-core:911ba92ab4133e75fe2a420e16ed9cb4cf32196f")
            .withCommand("serve --node-id local01 --object-store file --data-dir /home/influxdb3/.influxdb3")
            .withExposedPorts(8181);

Thanks for this. It's mentioned earlier as the default port, but we should specify it as well for the Docker image.