码迷,mamicode.com
首页 > 其他好文 > 详细

使用nsenter工具进入Docker容器

时间:2018-03-08 15:57:20      阅读:649      评论:0      收藏:0      [点我收藏+]

标签:Docker   虚拟化   nsenter   

vi docker_enter.sh

#!/bin/sh

# 作   者: chengcheng

# 时   间: 2018-03-08

# 文 档名: docker_enter.sh

# 版   本: 1.0.1

# 用   途: 使用nsenter工具进入Docker容器

# 用   法:. docker_enter 容器ID或bash -x docker_enter.sh 容器ID

# 正   文:如以下代码

if [ -e $(dirname "$0")/nsenter ]; then

        NSENTER=$(dirname "$0")/nsenter

else

        NSENTER=nsenter

fi


if [ -z "$1" ]; then

        echo "Usage: `basename "$0"` CONTAINER [COMMAND [ARG]...]"

        echo ""

        echo "Enters the Docker CONTAINER and executes the specified COMMAND."

        echo "If COMMAND is not specified, runs an interactive shell in CONTAINER."

else

        PID=$(docker inspect --format "{{.State.Pid}}" "$1")

        if [ -z "$PID" ]; then

                exit 1

        fi

        shift


        OPTS="--target $PID --mount --uts --ipc --net --pid --"


        if [ -z "$1" ]; then

                # No command given.

                # Use su to clear all host environment variables except for TERM,

                # initialize the environment variables HOME, SHELL, USER, LOGNAME, PATH,

                # and start a login shell.

                "$NSENTER" $OPTS su - root

        else

                # Use env to clear all host environment variables.

                "$NSENTER" $OPTS env --ignore-environment -- "$@"

        fi

fi


使用nsenter工具进入Docker容器

标签:Docker   虚拟化   nsenter   

原文地址:http://blog.51cto.com/12943999/2084203

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!