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 r
docker-compose up
$ docker-compose up -d --no-deps --build
--no-deps - Don't start linked services.
--build - Build images before starting containers.