DEV Community

Discussion on: Learn Docker - from the beginning, part IV docker-compose basics

Collapse
 
orphee profile image
orphee

Just pointing out 2 misstypings :)

docker stop && docker rm becomes docker-compose-down 

should be

docker stop && docker rm becomes docker-compose down 

and

so full command is now:

docker compose up -d

should be

so full command is now:

docker-compose up -d
Collapse
 
softchris profile image
Chris Noring

Thank you for making this article better. It should be corrected now :)