docker-debug

use new container attach on already container go on debug

  • 所有者: zeromake/docker-debug
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Docker-debug

Build Status
Go Report Card

English简体中文

Overview

docker-debug is an troubleshooting running docker container,
which allows you to run a new container in running docker for debugging purpose.
The new container will join the pid, network, user, filesystem and ipc namespaces of the target container,
so you can use arbitrary trouble-shooting tools without pre-installing them in your production container image.

Demo

asciicast

Quick Start

Install the docker-debug cli

mac brew

brew tap zeromake/docker-debug
brew install docker-debug

download binary file

# MacOS
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-darwin-amd64

# Linux
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-linux-amd64

chmod +x ./docker-debug
sudo mv docker-debug /usr/local/bin/

# Windows
curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-windows-amd64.exe

download the latest binary from the release page and add it to your PATH.

Try it out!

# docker-debug [OPTIONS] CONTAINER COMMAND [ARG...] [flags]
docker-debug CONTAINER COMMAND

# More flags
docker-debug --help

# info
docker-debug info

Build from source

Clone this repo and:

go build -o docker-debug ./cmd/docker-debug
mv docker-debug /usr/local/bin

Default image

docker-debug uses nicolaka/netshoot as the default image to run debug container.
You can override the default image with cli flag, or even better, with config file ~/.docker-debug/config.toml

version = "0.6.3"
image = "nicolaka/netshoot:latest"
mount_dir = "/mnt/container"
timeout = 10000000000
config_default = "default"

[config]
  [config.default]
    host = "unix:///var/run/docker.sock"
    tls = false
    cert_dir = ""
    cert_password = ""

Todo

  • support windows7(Docker Toolbox)
  • support windows10
  • refactoring code
  • add testing
  • add changelog
  • add README_CN.md
  • add brew package
  • docker-debug version manage config file
  • cli command set mount target container filesystem
  • mount volume filesystem
  • docker connection config on cli command
  • -v cli args support
  • docker-debug signal handle smooth exit
  • cli command document on readme
  • config file document on readme
  • add http api and web shell

Details

  1. find image docker is has, not has pull the image.
  2. find container name is has, not has return error.
  3. from customize image runs a new container in the container's namespaces (ipc, pid, network, etc, filesystem) with the STDIN stay open.
  4. create and run a exec on new container.
  5. Debug in the debug container.
  6. then waits for the debug container to exit and do the cleanup.

Reference & Thank

  1. kubectl-debug: docker-debug inspiration is from to this a kubectl debug tool.
  2. Docker核心技术与实现原理: docker-debug filesystem is from the blog.
  3. docker-engine-api-doc: docker engine api document.

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]










主要指標

概覽
名稱與所有者zeromake/docker-debug
主編程語言Go
編程語言Go (語言數: 3)
平台
許可證MIT License
所有者活动
創建於2019-02-13 10:09:13
推送於2025-04-17 01:38:15
最后一次提交2025-04-17 09:38:08
發布數23
最新版本名稱v0.7.10 (發布於 )
第一版名稱v0.1.0 (發布於 )
用户参与
星數593
關注者數13
派生數40
提交數145
已啟用問題?
問題數16
打開的問題數1
拉請求數14
打開的拉請求數0
關閉的拉請求數1
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?