Dockerfile
# Dockerfile Dockerfile 由一行行命令語句組成,並且支援以 # 開頭的註解行。 Dockerfile 分為四部分: 基底映像檔資訊 維護者資訊 映像檔操作指令 容器啟動時執行指令。 # This dockerfile uses the ubuntu image # VERSION 2 - EDITION 1 # Author: docker_user # Command format: Instruction [arguments / command] .. # 基本映像檔,必須是第一個指令 FROM ubuntu# 維護者: docker_user...
more...

