使用dockerfile 好处就是自动化定义自己的容器。
可以参考官网
https://docs.docker.com/engine/reference/builder/
1.build使用方法
docker build -f /path/to/a/Dockerfile -t shykes/myapp:1.0.2 -t shykes/myapp:latest .
-f 指定dockerfile文件位置 , -t 指定new image 名称可以指定多个,可以加tag.
2.Dockerfile 使用说明
FROM
FROM <image>[:<tag>] [AS <name>]
合法的dockerfile文件必须以此开始
RUN
run 有两种方式
RUN <command> shell形式,命令运行在shell终端中,linux默认是/bin/sh -c
RUN ["executable", "param1", "param2"] exec 形式
例如:
RUN /bin/bash -c ‘echo hello’
就像在shell终端运行:/bin/bash -c ‘echo hello’
RUN [“/bin/bash”, “-c”, “echo hello”]
就像在shell终端运行:exec /bin/bash -c ‘echo hello’
CMD
主要目的是提供默认参数给容器,不过默认的也可以包括可执行命令。
cmd有三种形式
CMD ["executable","param1","param2"] (exec form, this is the preferred form)
CMD ["param1","param2"] (as default parameters to ENTRYPOINT)
CMD command