1. 创建命名空间
创建名为custom的命令空间
ctr ns create custom
2. 导入镜像
把镜像导入到刚刚创建的空间
ctr -n k8s.io images import restfulapi.tar
3. 创建容器
创建一个test_api的容器
ctr -n custom run --null-io --net-host -d --mount type=bind,src=/etc,dst=/host-etc,options=rbind:rw --mount type=bind,src=/root/.kube,dst=/root/.kube,options=rbind:rw docker.io/library/restfulapi:latest test_api
4. 查看容器中正在运行的程序
我这里镜像build时候再CMD运行了一个restful的api
ctr -n custom task ls
5. 进入容器
ctr -n custom task exec --exec-id 0 -t test_api bash
6. 先删除线程,然后删掉容器
ctr -n custom task kill test_api
ctr -n custom container rm test_api