I previously posted about how you can use Jenkins in a Docker container, and then use Jenkins Swarm to create build agents automatically? There was an issue with the build agent which caused Maven to download dependencies from localhost. You’d …

Maven inside Docker’d build agents Read more »

Tagged with: , ,

Time to make use of Amazon’s AWS offerings – specifically the Simple Storage Service. tl;dr / Executive Summary:- $ curl -L -O https://github.com/AndrewGorton/AwsFileStorage/archive/v1.0.0.zip $ unzip v1.0.0.zip $ cd AwsFileStorage-1.0.0 $ mvn package $ export AWS_ACCESS_KEY=<enter_your_aws_access_key_here> $ export AWS_SECRET_ACCESS_KEY=<enter_your_aws_secret_access_key_here> $ export …

DropWizard and AWS Read more »

Tagged with: , , , ,

Slight improvement to the previous post about building using a Docker container. I’ve split it into two parts. The first part simply creates an image with OpenJDK 1.7, Maven 3.1.1, Git, tar, unzip and vim. The second part downloads the …

Docker build machine for Maven/Java – part 2 Read more »

Tagged with: , , , , , ,

Here’s a quick-ish way to create a Docker container which downloads and compiles the SimpleDropWizardEcho service I wrote for testing. But why would you do this? As discussed in my previous post, this creates a clean environment with no state …

Docker build machine for Maven/Java Read more »

Tagged with: , , , ,

Further from my previous post, you can add JSPs and HTML files to the project, simply by placing them under the src/main/webapp directory.

Tagged with: , , , ,