Live data from Hacker News

Docker at Spotify

continuousdelivery.uglyduckling.nl

21–23 of 23 posts

Re: Docker at Spotify

#21

They let devs ssh onto production boxes and do what they want?!?! "Things diverge pretty quickly" - I'm sure they do. That sounds like a recipe for disaster... Docker looks promising but until there's a way to allocate maximum resources to a container I wouldn't use it in production. VMs are much slower to start but at least a runaway process on one won't affect other VMs on the same hardware. Docker only lets you hi…

It's fairly easy to integrate configuration management tools into your Docker workflow - I wrote a blog post about it here: http://kartar.net/2013/12/building-puppet-apps-inside-docker....

Re: Docker at Spotify

#22

Earlier quoted context omitted.

Thanks. I had seen packer.io but then forgot about it. I had another look at Docker in November and had issues installing what I needed via apt for some reason. It wasn't a drop-in replacement for VMs for several reasons (I wanted an alternative backend to provision with salt), but when it hits 1.0 I'll have a look again, if not before.

Definitely it is not. You'd have to prepare the docker instance a little bit differently than you would for VM. For example: Docker does not run upstart by default. re: issues with installing via apt => Docker public registry provided a stock Ubuntu 12.04 with a lot of things stripped out including the /etc/apt/sources.list (it contains only 1 entry). You'd have to populate that sources.list with a Ubuntu/Debian that…

That's just by default though. You can easily run upstart (or other init styles) inside Docker.

Additionally you can use a number of base images if the stock Ubuntu image doesn't suit you.

Post reply on HN