相較於用 docker commit ,比較多人是使用 『Dockerfile』來建立 image
A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image
https://docs.docker.com/engine/reference/builder/
Dockerfile 是一個文字檔,包含所有的命令,讓使用者在 command line 中組成自己的 image
建一個資料夾 建一個 Dockerfile
這個資料夾就是 image 的 build environment
本資料夾中的所有檔案會隨著上傳到 daemon
編輯你的 Dockerfile
docker build [OPTIONS] PATH | URL | -
docker build -t="eric211924/try_dockerfile" .
debug your Dockerfile , 直到 build 成功為止
run 一個 container from 自己 build 出來的 image