我想为不同的环境(开发、测试和生产)创建 Docker 映像。我确实创建了三个不同的 Dockerfile。
我发现以下两个选项可以在单个存储库或多个存储库中管理不同版本的图像。
Option 1: Build images with different tags and push it to the single docker repository?
Option 2: Create separate docker repository for each environment and push corresponding images?
我想知道什么是首选选项或任何其他想法?