Skip to content

Commit 9e37a94

Browse files
Correct 1-create-the-workflow-file.md (#34)
* Update 1-create-the-workflow-file.md * Update 1-create-the-workflow-file.md
1 parent 74da5c7 commit 9e37a94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/steps/1-create-the-workflow-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First, take a moment to examine the image below. It shows the relationship betwe
1414

1515
![](https://i.imgur.com/xZCkjmU.png)
1616

17-
**Continuous integration** (CI) is a practice where developers integrate tested code into a shared branch several times per day. **Continuous delivery** (CD) is the next phase of **continuous integration** (CI), where we deploy our changes to the world.
17+
**Continuous integration** (CI) is a practice where developers integrate tested code into a shared branch several times per day. **Continuous delivery** (CD) is the next phase of **continuous integration** (CI) where we also make sure to package the code in a _release_ and store it somewhere - preferably, in an artifact repository. Lastly, **Continuous deployment** (CD) takes **continuous delivery** (CD) to the next level by directly deploying our releases to the world.
1818

1919
[**Docker**](https://www.docker.com/why-docker) is an engine that allows you to run containers.
2020
Containers are packages of software that can run reliably in different environments. Containers include everything needed to run the application. Containers are lightweight in comparison to virtual machines. A **Dockerfile** is a text document that contains all the commands and instructions necessary to build a Docker Image. A **Docker image** is an executable package comprised of code, dependencies, libraries, a runtime, environment variables, and configuration files. A **Docker container** is a runtime instance of a Docker Image.

0 commit comments

Comments
 (0)