Skip to content

Commit

Permalink
Correct 1-create-the-workflow-file.md (#34)
Browse files Browse the repository at this point in the history
* Update 1-create-the-workflow-file.md

* Update 1-create-the-workflow-file.md
  • Loading branch information
danielgospodinow committed Jan 16, 2024
1 parent 74da5c7 commit 9e37a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/steps/1-create-the-workflow-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ First, take a moment to examine the image below. It shows the relationship betwe

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

**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.
**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.

[**Docker**](https://www.docker.com/why-docker) is an engine that allows you to run containers.
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.
Expand Down

0 comments on commit 9e37a94

Please sign in to comment.