Dremio's Docker Instructions are wrong

On the Docker page it says to set up a single node deployment you need to run this command.

docker run -p 9047:9047 -p 31010:31010 -p 45678:45678 dremio/dremio-oss

However, since Arrow Flight was added, port 32010 is also used. The docker run command should be the following instead.

docker run -p 9047:9047 -p 31010:31010  -p 32010:32010 -p 45678:45678 dremio/dremio-oss

It seems this issue is also repeated on the Github repo as well. I am not sure if it affects the helm chart documentation too, but those should be checked as well.

I wasn’t sure where to report this issue since it’s affecting the Docker page outside of Github as well as the Github. I think both the Docker and Github should be fixed to avoid problems for people trying to connect to the new Arrow Flight ODBC.