How to get docker-compose to always re-create containers from fresh images?

DockerDocker Compose

Docker Problem Overview


My docker images are built on a Jenkins CI server and are pushed to our private Docker Registry. My goal is to provision environments with docker-compose which always start the originally built state of the images.

I am currently using docker-compose 1.3.2 as well as 1.4.0 on different machines but we also used older versions previously.

I always used the docker-compose pull && docker-compose up -d commands to fetch the fresh images from the registry and start them up. I believe my preferred behaviour was working as expected up to a certain point in time, but since then docker-compose up started to re-run previously stopped containers instead of starting the originally built images every time.

Is there a way to get rid of this behaviour? Could that way be one which is wired in the docker-compose.yml configuration file to not depend "not forgetting" something on the command line upon every invocation?

ps. Besides finding a way to achieve my goal, I would also love to know a bit more about the background of this behaviour. I think the basic idea of Docker is to build an immutable infrastructure. The current behaviour of docker-compose just seem to plain clash with this approach.. or do I miss some points here?

Docker Solutions


Solution 1 - Docker

docker-compose up --force-recreate is one option, but if you're using it for CI, I would start the build with docker-compose rm -f to stop and remove the containers and volumes (then follow it with pull and up).

This is what I use:

docker-compose rm -f
docker-compose pull
docker-compose up --build -d
# Run some tests
./tests
docker-compose stop -t 1

The reason containers are recreated is to preserve any data volumes that might be used (and it also happens to make up a lot faster).

If you're doing CI you don't want that, so just removing everything should get you want you want.

Update: use up --build which was added in docker-compose 1.7

Solution 2 - Docker

The only solution that worked for me was the --no-cache flag:

docker-compose build --no-cache

This will automatically pull a fresh image from the repo. It also won't use the cached version that is prebuilt with any parameters you've been using before.

Solution 3 - Docker

By current official documentation there is a short cut that stops and removes containers, networks, volumes, and images created by up, if they are already stopped or partially removed and so on, then it will do the trick too:

docker-compose down

Then if you have new changes on your images or Dockerfiles use:

docker-compose build --no-cache

Finally:docker-compose up

In one command: docker-compose down && docker-compose build --no-cache && docker-compose up

Solution 4 - Docker

You can pass --force-recreate to docker compose up, which should use fresh containers.

I think the reasoning behind reusing containers is to preserve any changes during development. Note that Compose does something similar with volumes, which will also persist between container recreation (a recreated container will attach to its predecessor's volumes). This can be helpful, for example, if you have a Redis container used as a cache and you don't want to lose the cache each time you make a small change. At other times it's just confusing.

I don't believe there is any way you can force this from the Compose file.

Arguably it does clash with immutable infrastructure principles. The counter-argument is probably that you don't use Compose in production (yet). Also, I'm not sure I agree that immutable infra is the basic idea of Docker, although it's certainly a good use case/selling point.

Solution 5 - Docker

docker-compose up --build

OR

docker-compose build --no-cache

Solution 6 - Docker

I claimed 3.5gb space in ubuntu AWS through this.

clean docker > docker stop $(docker ps -qa) && docker system prune -af --volumes

build again

> docker build . > > docker-compose build > > docker-compose up

Solution 7 - Docker

Also if the compose has several services and we only want to force build one of those:

docker-compose build --no-cache <service>

Solution 8 - Docker

$docker-compose build

If there is something new it will be rebuilt.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKristof JozsaView Question on Stackoverflow
Solution 1 - DockerdnephinView Answer on Stackoverflow
Solution 2 - DockerdavidbonacheraView Answer on Stackoverflow
Solution 3 - DockerVictor TimoftiiView Answer on Stackoverflow
Solution 4 - DockerAdrian MouatView Answer on Stackoverflow
Solution 5 - DockerflgnView Answer on Stackoverflow
Solution 6 - DockerOurangZeb KhanView Answer on Stackoverflow
Solution 7 - DockerobotezatView Answer on Stackoverflow
Solution 8 - DockerMathias AsbergView Answer on Stackoverflow