So I learned that there are a lot of services that are defined docker-compose.yml. I started a few of these services. I want to create only one of these and then start it up without using the other services
These are the commands I have run :
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
I got a nginx container by the end and I also learned that docker-compose will not kill all running containers!