Skip to content
源恪的课程学习心得体会
Search
K
Main Navigation
Home
Tools
Github
Appearance
Menu
Return to top
On this page
Docker的使用技巧
技巧
1.运行一个没有服务的容器
Dockerfile
FROM
debian:latest
# 在 Dockerfile 末尾添加
CMD
[
"tail"
,
"-f"
,
"/dev/null"
]