Skip to main content

Posts Tagged ‘Docker’

Automating Docker Image builds

Why automate? Similar to any other automation, we get consistent results once we have automation in place. It speeds up the development process. You can produce the same result by following the same steps, so there is less of a change that it will work sometimes and not work other times. What is required to […]

Docker Swarm Quick Overview

Docker Swarm helps you create and manage Docker Clusters. Docker Swarm automatically handle scaling up and down depending on number of task you want to run. Docker swarm can handle load balancing internally among containers. Docker Swarm Components Docker Swarm contains following key components. Node – Special Container that run on each Swarm host. Node […]

Docker Container Best Practices

It is preferable to use Dockerfile to create an image. Using Dockerfile is the only way you can be sure of reproducing the same image every time. Use a Layered approach, but keep in mind that Docker imposes limits on the number of layers an image can have. To minimize layer, you can combine commands […]

An Introduction to Docker and Containers

Containers: Containers represent operating system level virtualizations which help you run multiple isolated systems i.e. containers in same machine. Docker: Docker is a containerization engine which means that it lets you create containers to achieve operating system level virtualization. Docker allows you to automate the containerization process. We can store Docker images in a Docker […]

Top 5 Lessons of Day 1 at Hadoop Summit #HS16SJ

Perficient is at the Hadoop Summit in San Jose, CA and we’re tracking the best of the conference. Here’s the top 5 lessons from day 1: Apache Atlas for managing your business catalog is almost ready for prime time! It is not, however, ready to be a full fledged Records Management solution (no policy management, […]

Guidelines for Selecting the Right API Gateway for API Strategy

In the past couple months, we have seen rapid growth in the API business. Organizations that were stuck to traditional business models are now looking at API strategy as new source of revenue and opportunities. Most of the organizations are either looking into an API strategy or have already started planning. It’s clear that no one wants […]

Two “shipping” ways of using docker

Docker is a platform for developers and sysadmins to develop, ship, and run applications. Ship the “Dockerized” app and dependencies anywhere – to QA, teammates, or the cloud – without breaking anything. It’s one of the most important purposes to use docker. In Vernon Stinebaker‘s earlier post “Docker, mobile, and putting things in boxes“, he […]

Docker, mobile, and putting things in boxes

Docker and custom mobile application development are both very hot. Recently we decided to run a small internal project to gain some ‘sleeves-up’ insight into Docker as well as how we could deliver containerized versions of applications. This blog article, along with others to follow from both my colleagues and myself will document some of […]

Load More