DEV Community

Discussion on: 10 docker-compose and docker commands that are useful for active development

Collapse
 
flexdinesh profile image
Dinesh Pandiyan

This is an excellent list and very helpful. Thanks Lina.

I will also add one more of my frequent commands to the list.

docker-compose up --build

This brings the container up and builds if there are changes. This is a shorthand for docker-compose build and docker-compose up together. Comes in handy when you're making changes to your compose file.

Collapse
 
aduranil profile image
Lina Rudashevski

nice one! tks