GitHub Actions
Explore how to use GitHub Actions to automate continuous integration tasks with Docker. Understand workflow components, triggering events, and how to build, test, and push Docker images using secure credentials in a CI pipeline.
A modern application isn’t complete without a proper CI/CD process in place. CI/CD involves taking code from a code repository, automatically building artifacts, and testing against it to ensure the software is ready to deliver to another environment. In this lesson, we’ll learn to work with Docker in various CI environments.
Working with Docker in CI is no different than working in a local environment. Most commands that we use on our local machine will be applicable in the CI ...