Skip to content

Commit 77e9c09

Browse files
authored
Fixed grammar, spacing and wording.
Added an 's' for a better grammar. Added a missing space. Replaced a word for a clearer explanation.
1 parent 59dec6c commit 77e9c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginners/difference-compose-dockerfile.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
A Dockerfile is a simple text file that contains the commands a user could call to assemble an image whereas Docker Compose is a tool for defining and running multi-container Docker applications.
44

5-
Docker Compose define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment. It get an app running in one command by just running docker-compose up.Docker compose uses the Dockerfile if one add the build command to your project's docker-compose.yml. Your Docker workflow should be to build a suitable Dockerfile for each image you wish to create, then use compose to assemble the images using the build command.
5+
Docker Compose define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment. It gets an app running in one command by just running docker-compose up. Docker compose uses the Dockerfile if you add the build command to your project's docker-compose.yml. Your Docker workflow should be to build a suitable Dockerfile for each image you wish to create, then use compose to assemble the images using the build command.

0 commit comments

Comments
 (0)