Upgrade to Pro — share decks privately, control downloads, hide ads and more …

docker

 docker

Rapid Fire Tech Talk

Kevin Marsh

April 04, 2014
Tweet

More Decks by Kevin Marsh

Other Decks in Technology

Transcript

  1. Dockerfile # use the ubuntu base image provided by dotCloud

    FROM ubuntu # make sure the package repository is up to date RUN apt-get update # install memcached RUN apt-get install -y memcached $ docker build -t memcached:v1 .