Hacker News new | past | comments | ask | show | jobs | submit login

Docker and OCI containers with the layers and such are (in my experience) best used as a way to make any environment into a "static binary" in that you're pickling all the dependencies into a single artifact; the storage layers and network port stuff allow for abstraction.

LXC is best thought of as a way to make a VM, but each of your VMs shares a kernel and filesystem cache. Each of these "VMs" can have a unique IP address, and even a totally different userland, but is otherwise best thought of (For better or worse, depending on your needs) as a VM / computer on its own.

LXD is an orchestration mechanism to provision / manage these LXC containers -- it's like but not really like nomad or kubernetes.

For stateless things, I tend to use docker / OCI containers; for stateful things I tend to use LXC because the volume mounting abstractions in OCI containers just get in the way.

But that's me. I'm sure I'm doing it wrong in a variety of ways.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: