Hi,
Yes, you will have to amend the dremio.conf config file.
You can use a “docker exec -it yourdockername bash” but the issue is that you will not have any editor to amend the file inside of the container. you will still be able to find the file:
I end up moving the file between the host and the docker with:
docker cp youdockername:/opt/dremio/conf/dremio.conf .
Amend the file:
The save it / copy back to the container
docker cp dremio.conf dremio13v2:/opt/dremio/conf/dremio.conf
You will probably need to restart the docker/service
then your python script will look like that:
We had a lot of issue with the DNS working randomly in virtual machines / dockers, but passing through direct IP seems better
Hope it helps,
Y.