Skip to content

Commit

Permalink
Merge pull request #235 from vocaldrain/patch-1
Browse files Browse the repository at this point in the history
Update section-2.md
  • Loading branch information
mluukkai authored Oct 22, 2023
2 parents 4586ef4 + fc7ac5a commit 44ed4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/part-3/section-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Before the workflow will work, two [secrets](https://docs.github.com/en/actions/

GitHub Actions are doing only the "first half" of the deployment pipeline: they are ensuring that every push to GitHub is built to an Docker image which is then pushed to Docker Hub.

The other half of the deployment pipeline is implemented by a containerized service called [Watchtower](https://github.com/containrrr/watchtower) that is an open source project that automates the task of updating images. Watchtower will poll the source of the image (in this case Docker Hub) for changes in the containers that are running. The container that is running will be updated and automatically restarted when a new version of the image is pushed to Docker Hub. Watchtower respects tags e.g. container using ubuntu:18.04 will not be updated unless a new version of ubuntu:18.04 is released.
The other half of the deployment pipeline is implemented by a containerized service called [Watchtower](https://github.com/containrrr/watchtower) that is an open source project that automates the task of updating images. Watchtower will pull the source of the image (in this case Docker Hub) for changes in the containers that are running. The container that is running will be updated and automatically restarted when a new version of the image is pushed to Docker Hub. Watchtower respects tags e.g. container using ubuntu:18.04 will not be updated unless a new version of ubuntu:18.04 is released.

:::tip Security reminder: Docker Hub accessing your computer

Expand Down

0 comments on commit 44ed4f9

Please sign in to comment.