In this blog, we would be using Dockerfile to create images and see how two docker containers would communicate using below scenario. Scenario Create two docker images using Dockerfile, one would host wordpress website and other would hold the website’s database. Using these images, create two containers, one for database hosting and other for website […]
In some cases we need mechanism to provide compilation of groovy script at runtime. But at the same time we need to make sure it doesn’t consume the JVM to perform compilation every time when we try to access that script. Hence to perform this we need to do the following task : Compile Groovy […]