问题:”Error response from daemon: invalid reference format: repository name must be lowercase”
解决方法:
出现该问题的原因是docker镜像命名错误,存在大写字母。
原代码:
docker build -t jenkinsTest_djangotest:0.1 .
修改后:
docker build -t jenkinstest_djangotest:0.1 .
出现该问题的原因是docker镜像命名错误,存在大写字母。
原代码:
docker build -t jenkinsTest_djangotest:0.1 .
修改后:
docker build -t jenkinstest_djangotest:0.1 .