在docker中,build是“創建”的意思;該命令用於根據給定的Dockerfile和上下文以構建Docker鏡像,語法為“docker build [OPTIONS] PATH | URL | -”,Dockerfile是一個用來建構鏡像的文字文件,文字內容包含了一條條建構鏡像所需的指令和說明。
本教學操作環境:linux7.3系統、docker19.03版、Dell G3電腦。
docker build 指令用來使用Dockerfile建立映像。
語法
docker build [OPTIONS] PATH | URL | -
OPTIONS說明:
--build-arg=[] :設定鏡像建立時的變數;
--cpu-shares :設定cpu 使用權重;
範例如下:
docker build -t runoob/ubuntu:v1 .使用URL github.com/creack/docker-firefox 的 Dockerfile 建立映像。
docker build github.com/creack/docker-firefox也可以透過-f Dockerfile 檔案的位置:
$ docker build -f /path/to/a/Dockerfile .在Docker 守護程式執行Dockerfile 中的指令前,先會對Dockerfile 進行語法檢查,有語法錯誤時會回傳:
$ docker build -t test/myapp . Sending build context to Docker daemon 2.048 kB Error response from daemon: Unknown instruction: RUNCMD推薦學習:《
docker影片教學》
以上是docker裡build是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!