文章分类 -  Docker

摘要:# 一、Installing Docker **1.1 Prerequisites** ``` A machine with: 256 MB of RAM, although more than 2 GB is recommended 10 GB of drive space (for Jenkin 阅读全文
posted @ 2023-05-29 17:08 梁博客 阅读(295) 评论(0) 推荐(0)
摘要:The exec form, which is the preferred form: ENTRYPOINT ["executable", "param1", "param2"] The shell form: ENTRYPOINT command param1 param2请注意 exec表单被解 阅读全文
posted @ 2021-08-19 18:17 梁博客 阅读(709) 评论(0) 推荐(0)
摘要:CMD ["executable","param1","param2"] (exec form, this is the preferred form) CMD ["param1","param2"] (as default parameters to ENTRYPOINT) CMD command 阅读全文
posted @ 2021-08-19 16:16 梁博客 阅读(67) 评论(0) 推荐(0)