[root@lab103 data]# docker pull mysql:8.0 Trying to pull repository docker.io/library/mysql ... Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
zphj1987@zphj1987deMacBook-Pro docker % docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE mysql 8.0 f5da8fc4b539 2 months ago 573MB zphj1987@zphj1987deMacBook-Pro docker % docker save f5da8fc4b539 > mysql8.0.tar
导入
传输到需要用的机器上面
1 2 3 4 5 6 7 8 9
[root@lab103 data]# docker load -i mysql8.0.tar sha256:d0e2993cf4498a437735cd6b74253e1e541da55198240567a37570d51ee4599a [root@lab103 data]# docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE <none> <none> d0e2993cf449 5 seconds ago 607 MB [root@lab103 data]# docker tag d0e2993cf449 mysql:8.0 [root@lab103 data]# docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE mysql 8.0 d0e2993cf449 About a minute ago 607 MB