Closed fils closed 1 year ago
I think if you're doing this on the docker level (vs docker-compose) you will need to either expose a port to the host (e.g., -p 127.0.0.1:8159:8159
) or you'll need to add a --network specification to the docker run command that you're using that will connect your docker container to the network that's in use for the solr container.
docker network ls
and docker inspect [containerid]
might be useful commands to figure out how to connect them.
When running the docker version of the loader I tried
Where the 5b4.... is my local image build from the Dockerfile. This fails to connect to the solr endpoint
For reference, with the docker ps we see
The questions are:
Thanks