Docker 实战(一):在 Mac 上安装配置 Docker
在安装之前
最新的 Docker 版本建议安装 Docker for Mac,原先的 Docker Toolbox 方式已经不建议使用。
If you already have an installation of Docker Toolbox, please read these topics first to learn how Docker for Mac and Docker Toolbox differ, and how they can coexist.
安装
Welcome to Docker for Mac!
Please read through these topics on how to get started. To give us feedback on your experience with the app and report bugs or problems, log in to our Docker for Mac forum.
使用镜像库加速
国内访问 Docker 仓库会比较慢,可以使用 2 个加速地址:
注册并登录以上地址可以获得专属加速地址。
在 Mac 上,点击桌面顶栏的 Docker 图标,选择 Preferences ,在 Advanced 标签下的 Registry mirrors 列表中加入专属地址。
点击 Apply & Restart 按钮使设置生效。
第一个镜像
1 | $ docker pull ubuntu |
启动 ubuntu 容器
1 | $ docker run -it ubuntu |