3.8 Dockerfile实战2

使用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

你可能感兴趣的:(3.8 Dockerfile实战2)