Home > OS >  Run Solr Docker Image on two different ports in a machine at same time
Run Solr Docker Image on two different ports in a machine at same time

Time:04-11

Is there a way to run Solr Docker Image on two different ports in a machine at same time?

I was referring this: https://hub.docker.com/_/solr but didn't find much regarding my use case. Can anyone suggest a solution to achieve it?

CodePudding user response:

Yes, you can. Do

docker run -p 8983:8983 -d solr
docker run -p 8984:8983 -d solr

and you'll have one instance on http://localhost:8983/ and one on http://localhost:8984/

  • Related