Docker-Compose Commands Overview
A brief overview of Docker Compose commands
Let’s discuss some of the commands that Compose provides us to use with Compose files.
To be focused on implementation and keep what we learn within the scope of this course, we will only look at frequently-used commands.
Docker-compose commands
docker-compose
Every command starts with this. Anything you want to do in Compose, you have to do with commands starting with docker-compose. docker-compose --help
will give you a list of commands provided in the installed ...