I am quite new to Docker (only for a week I m learning) and trying to move to docker for my dev environment up to production
In production image, it is quite clear that I will COPY my app to the image and deliver.
But in development environment, I don’t want to rebuild image every time some code get changed. So I consider using VOLUME and share code between host and container.
But the problem is how to do debugging my app on tomcat (I am trying to use remote debugging, but I m not sure it will do good with current settings) and I m also not very sure about Continuous Integration? Someone pls share us your experience and good practices. Thanks a lot.
In Tomcat, catalina.sh has a jpda parameter you can use to invoke debugging. It will tell you the port that it is listening on. You can map and connect to that.
As for rebuilding the image, keep in mind that under most circumstances you don’t rebuild the whole image if the Dockerfile is built correctly. Put your COPY command as far down the bottom of the file as possible and only it will have to re-run when rebuilding. For example, the project I referenced takes a few minutes to build the image the first time. Every other run it takes seconds to add in the newly compiled library. Even if adding in a new war (mine just overlays on top of an expanded war as that is how the base app is delivered), it will take a few seconds to do that if Docker is hosted locally.
I can’t really speak to the CI aspects other than you can write integration tests against the Docker container and Jenkin’s etc just thinks it running the gradle/maven/etc script.
(Sorry the Java project is fairly small but there is quite a bit of extra stuff to make the app work for my use case. You’ll see I use docker compose to spin up several servers (LDAP, Apache, etc) but it all to support my Java dev.)
Thanks for the answer John. I can debug my java app on tomcat now. I use jpda on JPDA_ADDRESS=8000 and -p 8000:8000.
For reference: https://confluence.sakaiproject.org/display/BOOT/Debugging+Tomcat+Remotely+Using+Eclipse
– Inside docker container SSH – export JPDA_ADDRESS=8000 export JPDA_TRANSPORT=dt_socket /path/catalina.sh jpda start
– From eclipse –
Chose “Debug As”=> “Remote Java Application” => Set “Host” container IP in ubuntu or docker-machine IP in windows and set Port 8000
It seems that catalina.sh jpda start runs catalina in daemon mode, using run instead will keep it as the main process, thus can be set as the CMD for the Dockerfile: catalina.sh jpda run