共计 270 个字符,预计需要花费 1 分钟才能阅读完成。
应用 Dockfile 构建一个命令行工具容器,能够灵便接管各种各样的参数
创立 Dockerfile
ENTRYPOINT 用于启动时运行,CMD []
用于接管参数。
FROM ubuntu
RUN apt-get update && apt-get install -y stress
ENTRYPOINT ["/usr/bin/stress"]
CMD []
编译镜像
docker build -t ubuntu-stress-tool .
调用容器
docker run ubuntu-stress-tool --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 10s
正文完