April 2017
Beginner
404 pages
9h 30m
English
The following command helps in recreating the containers:
docker-compose create
Use the following command if you want the containers to be recreated even if their configuration and image have not changed:
docker-compose create --force-recreate
The combination given following builds the images and forces to recreate the containers:
docker-compose create --build --force-recreate
You can avoid the recreate of containers or rebuild of images by using the --no-recreate and --no-build flags accordingly.
Read now
Unlock full access