We're just normal men.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#===================================================================== | |
docker-compose -f docker-compose.json up #use JSON instead of YAML compose file | |
#===================================================================== | |
docker-compose -f ~/hello_world/docker-compose.yml build | |
docker-compose -f ~/hello_world/docker-compose.yml up -d | |
docker-compose ps # Lists containers. | |
docker-compose stop | |
docker-compose start # Starts existing containers for a service. | |
docker-compose stop # Stops running containers without removing them. | |
docker-compose pause # Pauses running containers of a service. |