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

Clojure REPL or cluster deployment with Docker ...

Clojure REPL or cluster deployment with Docker – January 2014

What is Docker and how to use it to spawn a Clojure REPL or for deploy and run a cluster of services.

Avatar for Filippo Vitale

Filippo Vitale

January 30, 2014
Tweet

More Decks by Filippo Vitale

Other Decks in Programming

Transcript

  1. LXC Linux Container “...something in the middle between ★ a

    chroot on steroids and a ★ full fledged virtual machine.”
  2. LXC Linux Container “...something in the middle between ★ a

    chroot on steroids and a ★ full fledged virtual machine.” The goal of LXC is to create an environment as close as possible as a standard Linux
  3. LXC Linux Container “...something in the middle between ★ a

    chroot on steroids and a ★ full fledged virtual machine.” The goal of LXC is to create an environment as close as possible as a standard Linux without the need for a separate kernel
  4. LXC Linux Container “...something in the middle between ★ a

    chroot on steroids and a ★ full fledged virtual machine.” The goal of LXC is to create an environment as close as possible as a standard Linux without the need for a separate kernel “If it can run on the Host, it can run in the Container”
  5. Docker Demo sudo docker run \ -i -t -rm \

    filippovitale/java7 \ java -version