1 BusyBox
BusyBox是一个集成了100多个最常用Linux命令(如cat、echo、grep、mount、telnet等)的精简工具箱,它只有不到2MB大小,被誉为“Linux系统的瑞士军刀”。BusyBox可运行于多款POSIX环境的操作系统中,如Linux(包括Android)、Hurd、FreeBSD等。
1.1 获取官方镜像
在Docker Hub中搜索busybox相关的镜像,如下所示:
$ docker search busybox
使用docker pull指令下载镜像busybox:latest
$ docker pull busybox:latest
1.2 运行busybox
$ docker run -it busybox
查看容器内的挂载信息:
/# mount
1.3 相关资源
BusyBox的相关资源如下
BusyBox 官网:https://busybox.net
BusyBox 官方仓库:https://git.busybox.net/busybox
BusyBox 官方镜像:https://hub.docker.com/_/busybox
BusyBox 官方镜像仓库:https://github.com/docker-library/busybox