进入Docker容器的shell脚本 

 

使用root用户安装util-linux

yum -y install util-linux

 

编写脚本

vi docker-enter.sh 

 

#!/bin/bash

CNAME=$1

CPID=$(docker inspect --format "{{.State.Pid}}" $CNAME)

if [ "$#" -gt 1 ]; then

    nsenter --target $CPID --mount --uts --ipc --net --pid -- "$2"

else

    nsenter --target $CPID --mount --uts --ipc --net --pid -- /bin/bash

fi

 

 

使用:

./docker-enter.sh 容器名称

或者

 ./docker-enter.sh 容器名称 启动脚本( /bin/bash)

 

nsenter 可以访问另一个进程的名字空间。nsenter 要正常工作需要有 root 权限

 

参考:

https://github.com/jpetazzo/nsenter/issues/5

http://c.biancheng.net/cpp/view/2739.html

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐