DOCKER PUSH镜像到本地仓库报RECEIVED UNEXPECTED HTTP STATUS: 500 INTERNAL SERVER ERROR

查看SElinux的状态,将其设置为Permissive

[root@localhost log]# getenforce
Enforcing
[root@localhost log]# setenforce 0
[root@localhost log]# getenforce
Permissive

重新docker push 即可

[root@localhost docker]# docker push 192.168.197.100:5000/test 
The push refers to a repository [192.168.197.100:5000/test]
b3f465d7c4d1: Pushed 
a5f27630cdd9: Pushed 
239a096513b5: Pushed 
f5b9430e0e42: Pushed 
3e207b409db3: Pushed 
latest: digest: sha256:e09ed8c6c837d366a501f15dcb47939bbbb6242bf3886270834e2a0fa1555234 size: 1363

你可能感兴趣的:(docker)