在 Mac 上 安裝 Docker for Mac

Install

目前 Docker for Mac 最方便的安裝方法就是使用 Homebrew Cask 安裝,打開 Terminal,輸入:

1
brew cask install docker

安裝成功後打開 Docker.app

第一次打開時會需要你的作業系統密碼,安裝額外的套件,提供完整的功能

當安裝完成後,我們就能在右上角的工具欄看到鯨魚 🐳 icon

打開 Docker dashboard 看看,嗯,目前是空的,沒有任何的 container 在執行


Run

接著執行一個 Redis 的 container 作為我們的 hello world

1
docker run -d --name redis redis

-d 背景執行此 container,--name redis 將此 container 命名為 redis

Unable to find image 'redis:latest' locally 因此它自動從 Docker Hub pull 一個最新的 Redis image 下來,做成 container 執行

看看電腦上有哪些 docker images 吧

1
docker image ls

現在電腦上有 Redis 的 image 了

接著檢查一下 有哪些 container 正在執行吧

1
docker container ls

可以看到剛剛安裝的 Redis container 正在執行中

也可以從 Docker dashboard 的 GUI 確認

至此我們就 onboard Docker 囉

References

作者

楊竑昕

發表於

2020-03-29

更新於

2023-04-03

許可協議

評論