Sharing Docker Images
Sharing container images is key to being able to run your applications anywhere. You’ve built your application components on your workstation or laptop, and now you are ready to move them to different platform stages. This chapter will cover how images will be stored and shared with other users or orchestration platforms. We will also review various methods for signing container images to improve security in our development workflow. We will also learn how to use content scanners to find any possible security issues in our container images. By the end of this chapter, you will be ready to deliver secure and trusted images to production.
In this chapter, we will cover the following main topics:
- Container image registries and repositories
- Improving security by signing container images
- Analyzing container image content by using image scanners
This chapter will teach you about the different tools and techniques used to deliver secure...