Embed presentation
Download to read offline


![Dockerfile
FROM ruby:2.2
MAINTAINER Eric Oestrich
ADD . /app
WORKDIR /app
RUN bundle install
CMD ["rails", "server"]](https://image.slidesharecdn.com/kubernetesanddocker-151001161230-lva1-app6891/85/Kubernetes-and-docker-3-320.jpg)












Kubernetes is a cluster manager that schedules Docker containers across a cluster using pods. Pods are sets of Docker containers that are guaranteed to run on the same host. Replication controllers ensure that the desired number of pods for an application are running. Services provide a single IP address to load balance traffic to backend pods. Google Container Engine provides a hosted Kubernetes service. YAML files can be used to define replication controllers and services to deploy and expose applications on Kubernetes.


![Dockerfile
FROM ruby:2.2
MAINTAINER Eric Oestrich
ADD . /app
WORKDIR /app
RUN bundle install
CMD ["rails", "server"]](https://image.slidesharecdn.com/kubernetesanddocker-151001161230-lva1-app6891/85/Kubernetes-and-docker-3-320.jpg)










