There are scope of services which defined in docker-compose.yml. These service have been started. I need to rebuild only one of these and start it without up other services. I run the following commands:
docker-compose up -d # run all services
docker-compose stop nginx # stop only one. but it still running !!!
docker-compose build --no-cache nginx
docker-compose up -d --no-deps # link nginx to other services
At the end i got old nginx container. By the way docker-compose doesn't kill all running containers !
This should fix your problem:
Only:
Maybe these steps are not quite correct, but I do like this:
stop docker compose:
$ docker-compose down
remove the container:
$ docker system prune -a
start docker compose:
$ docker-compose up -d