Hi, I have a running dockerized instance of Solr which runs fine with the following setting for command option for solr service in docker-compose.yml file
command: > bash -c "solr start -cloud -s /var/lib/solr -t /var/data/solr; set -x; export; wait-for-solr.sh;" Recently, I wanted to debug one custom Solr plugin, so I added a command line argument for remote debugging to above command: command: > bash -c "solr start -a "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" -cloud -s /var/lib/solr -t /var/data/solr; set -x; export; wait-for-solr.sh;" Although, Solr starts without any issues, I cannot see any process running on debug port and consequently I am not able to connect to any remote debug process through my IntelliJ. Any suggestions?