139

When deploying applications onto servers, there is typically a separation between what the application bundles with itself and what it expects from the platform (operating system and installed packages) to provide. One point of this is that the platform can be updated independently of the application. This is useful for example when security updates need to be applied urgently to packages provided by the platform without rebuilding the entire application.

Traditionally security updates have been applied simply by executing a package manager command to install updated versions of packages on the operating system (for example "yum update" on RHEL). But with the advent of container technology such as Docker where container images essentially bundle both the application and the platform, what is the canonical way of keeping a system with containers up to date? Both the host and containers have their own, independent, sets of packages that need updating and updating on the host will not update any packages inside the containers. With the release of RHEL 7 where Docker containers are especially featured, it would be interesting to hear what Redhat's recommended way to handle security updates of containers is.

Thoughts on a few of the options:

  • Letting the package manager update packages on the host will not update packages inside the containers.
  • Having to regenerate all container images to apply updates seems to break the separation between the application and the platform (updating the platform requires access to the application build process which generates the Docker images).
  • Running manual commands inside each of the running containers seems cumbersome and changes are at risk of being overwritten the next time containers are updated from the application release artifacts.

So none of these approaches seems satisfactory.

Markus Miller
  • 1,914
  • 3
  • 15
  • 15
  • 1
    The best idea for this I've seen so far is [Project Atomic](http://www.projectatomic.io/). I don't think it's _quite_ ready for prime time though. – Michael Hampton Jul 08 '14 at 22:01
  • 2
    Valko, what workflow did you end up with? I'm running long-term containers (hosting php-cgi, for instance) and what I've found so far is: `docker pull debian/jessie` to update the image, then rebuild my existing image(s), then stop the containers and run them again (with the new image). The images I build have the same name as previous ones, so the starting is done via the script. I then remove "unnamed" images. I would surely appreciate a better workflow. – miha Nov 01 '14 at 08:40
  • 1
    miha: That sounds similar to what I have ended up doing. Basically continuously updating and rebuilding all images as part of making new releases. And restarting the containers using the new images. – Markus Miller Nov 04 '14 at 10:42
  • 1
    The best answer [here](http://stackoverflow.com/questions/26423515/how-to-automatically-update-your-docker-containers-if-base-images-are-updated) helps a lot because there is a script which contains main commandlines to do exactly what Johannes Ziemke said: – Hudson Santos Jan 29 '16 at 06:32
  • 1
    Interesting question. I wonder about it myself. If you have 20 applications running on one docker host, you have to upgrade base images, rebuild and restart! 20 applications and you don't even know if the security update affected them all, or just one of them. You have to rebuild image for say Apache when the security update affected only libpng for example. So you end up with unnecessary rebuilds and restarts... – Dalibor Filus Aug 03 '19 at 13:15
  • I don't have the answer, but in case anyone wants a simple script that can help automate checking for base image updates: [dockcheck](https://github.com/foresto/dockcheck) – ʇsәɹoɈ Oct 10 '20 at 01:47

4 Answers4

58

A Docker image bundles application and "platform", that's correct. But usually the image is composed of a base image and the actual application.

So the canonical way to handle security updates is to update the base image, then rebuild your application image.

  • 3
    Thanks, this sounds reasonable. Just still wish updating the platform so to speak wouldn't have to trigger repackaging the entire application (consider for example having to rebuild 100 different application images due to a single base image getting update). But maybe this is inevitable with the Docker philosophy of bundling everything together inside a single image. – Markus Miller Nov 20 '14 at 11:54
  • 3
    @ValkoSipuli You could always write a script to automate the process. – dlyk1988 Jan 16 '15 at 14:28
  • Why not apt-get upgrade, dnf upgrade, pacman -syu, etc equivalent inside the container? You could even create a shell script that does that *and then* runs the application, then use that as the container's entrypoint so that when the container is started / restarted it upgrades all its packages. – Arthur Kay Sep 29 '15 at 16:53
  • 10
    @ArthurKay Two reasons: 1) You blow up the container size, since all packages that get upgraded will be added to the container layer while keeping the outdated package in the image. 2) It defeats the biggest advantage of (container) images: The image you run isn't the same you build/tests because you change packages on runtime. – Johannes 'fish' Ziemke Sep 30 '15 at 09:32
  • 16
    There's one thing I don't understand: If you are a company buying a piece of software that is shipped as a docker container, do you have to wait for the manufacturer of the software to rebuild the application package every time a security issue comes out? Which company would give up the control over their open vulnerabilities in that way? – Sentenza Oct 17 '17 at 13:04
  • Is that OK to leave the outdated base image there? I mean anyway docker is a container, it is separated from the host OS. – tim Mar 13 '19 at 20:49
7

The containers are supposed to be lightweight and interchangeable. If your container has a security problem, you rebuild a version of the container that's patched and deploy the new container. (many containers use a standard base image that uses standard package management tools like apt-get to install their dependencies, rebuilding will pull the updates from the repositories)

While you could patch inside containers, that's not going to scale well.

Paul R
  • 104
  • 1
  • 2
3

This is handled automatically in SUSE Enterprise Linux using zypper-docker(1)

SUSE/zypper-docker

Docker Quick Start

PersianGulf
  • 596
  • 6
  • 21
pwl
  • 31
  • 2
0

First of all, many of your updates that you traditionally ran in the past will simply not be inside the container itself. The container should be a fairly lightweight and small subset of the full file system your accustomed to seeing in the past. The packages you should have to update would be those that are a part of your DockerFile, and since you have the DockerFile, you should be able to to keep track of those packages and container IDs that need updates. Cloudstein's UI that will be released soon keeps track of these DockerFile ingredients for you so that one can build the update scheme that fits best for their containers. Hope this helps