Install Docker CE on Ubuntu 16.04

In the middle of upgrading a bunch of servers from Ubuntu 14.04 to Ubuntu 16.04. One of the services we utilize heavily is Docker. So, below you’ll find a simple guide to getting Docker CE running on Ubuntu 16.04. I won’t go into details on usage because...

Tomcat with an Nginx Proxy using Docker

Bring up containers From this project root directory docker-compose build –no-cache docker-compose up -d Bringing down containers If you’ve made a change to any of the configurations (docker, nginx, tomcat), then you just need to bring down the containers...

Deploying a Docker App to AWS ECR with CircleCi

An example dockerized hapi “Hello World” application that will deploy to amazon ECS using CircleCi whenever the master branch is updated. AWS You’ll need to setup Amazon ECR for your docker image, in this sample it’s just test-app, a variable...

Deploying a Docker app to AWS Beanstalk

This is a simple node app (hapi.js) inside a docker container that can be run locally, and also deployed to AWS beanstalk using docker images stored in AWS ECR. Deploying to beanstalk via shell You can deploy this locally fairly simple. You’ll need AWS...