by ricktbaker | Nov 13, 2017 | Docker, Ubuntu
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...
by ricktbaker | Aug 30, 2017 | Docker, Github
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...
by ricktbaker | Aug 30, 2017 | Docker, Github
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...
by ricktbaker | Aug 30, 2017 | Docker, Github
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...