Page tree
Skip to end of metadata
Go to start of metadata

Quick notes in Docker in relation to LXC.

Docker started as a front-end application virtualization engine based on OS level virtualization. Docker started with LXC (Linux Containers) under the hoods but since version 0.9 switched to it's own libcontainer as the default virtual engine.

The two technologies appear to have similar functions. Initially I had a hard time wrapping my head around why to use Docker over LXC which to me is much more flexible and I don't lose ssh access.

However, interestingly enough as I used LXC more, I started to appreciate Docker's marketing (which will mean it will do well), documentation and spirit of being restrictive. From the view of writing applications and operating them:

  • Ephemeral - Being stateless you build must externalize the right things (logs, application property files) from day 1.
  • Single Process as Best Practice - I lose SSH access, but I then stop thinking of stacks (OS, Java, JEE Server, Application Code) and instead of a single package.
  • No Upgrading, Just Rebuild your Day 1 script to update your application and OS creating consistency.

It's a fundamental mind shift. If forces both Ops and Developers into a repeatable automated approach to building servers and coding applications. This shifts work instead to using good orchestration software (which I am in process of researching). The Docker base OS template is pared down to a single app environment and does not endorse an init, services, daemons, syslog, cron or running multiple applications.

Again though, I'll note all these feature is possible with LXC and by the way (with a slightly different spin) happens with Cloud Foundry powered by Docker.

You can run Dockers inside of Linux containers with virtually no performance impact.

Where I use LXC is for long running systems and creating isolation density within the Cloud. For example, a bunch of LXC's inside of an Azure VM which further separates my apps (maybe running inside of Docker) btw PreProd and Production.

Which one to learn first? If you want to really understand things, learn LXC and you'll know Docker. If using Cloud Foundry, learn LXC too. It's like starting with DOS then learning Windows.

Is one better than the other. No, they have different uses.

References

See my hosting page for Virtualization technologies.

LXC vs Docker - http://www.flockport.com/lxc-vs-docker/

Discusses security - https://blog.docker.com/2013/08/containers-docker-how-secure-are-they/


  • No labels

2 Comments

  1. Spent time digging deep in Docker docs to answer some questions I had and found that the single-process-ness of Docker is not strictly accurate. It is true that it does not have an init system of any kind and is designed to kick off a single process per container but that process may invoke other concurrent processes. I found a couple of examples in the Docker Engine docs, one using CFEngine and another using a tool called Supervisor:
    https://docs.docker.com/engine/admin/cfengine_process_management/
    https://docs.docker.com/engine/admin/using_supervisord/ 

    (Also note: at least a few of the docs I came across on docker.com were out of date and still referenced underlying lxc components)

    1. Good points. When I was initially looking at Docker you had to nest containers in order to achieve multiple processes. I've updated my notes. Specifically the spirit of docker falls in line with ideals behind Unix, do one thing and chain. So the best practices are to use 1 single process per docker and to make containers ephemeral. And in order to run multiple processes requires an additional tool(s).