File tree Expand file tree Collapse file tree 4 files changed +28
-12
lines changed
Expand file tree Collapse file tree 4 files changed +28
-12
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,9 @@ script:
2727
2828deploy :
2929 provider : releases
30- api_key :
31- secure : ${GITHUB_TOKEN}
30+ token : ${GITHUB_TOKEN}
3231 file_glob : true
3332 file : dist/*
34- skip_cleanup : true
33+ cleanup : false
3534 on :
3635 tags : true
Original file line number Diff line number Diff line change 1+ <a name =" 0.7.0 " ></a >
2+ ## [ 0.7.0] - 2020-04-21
3+ ### Docs
4+ - update readme
5+
6+ ### Feat
7+ - update mod dep
8+ - add support ` gdb `
9+
10+ <a name =" 0.6.3 " ></a >
11+ ## [ 0.6.3] - 2019-12-15
12+ ### Fix
13+ - check container is running
14+ - update change log
15+
116<a name =" 0.6.2 " ></a >
217## [ 0.6.2] - 2019-06-20
318### Doc
179194- ignore add more
180195
181196
182- [ Unreleased ] : https://github.com/zeromake/docker-debug/compare/0.6.2...HEAD
197+ [ Unreleased ] : https://github.com/zeromake/docker-debug/compare/0.7.0...HEAD
198+ [ 0.7.0 ] : https://github.com/zeromake/docker-debug/compare/0.6.3...0.7.0
199+ [ 0.6.3 ] : https://github.com/zeromake/docker-debug/compare/0.6.2...0.6.3
183200[ 0.6.2 ] : https://github.com/zeromake/docker-debug/compare/0.6.1...0.6.2
184201[ 0.6.1 ] : https://github.com/zeromake/docker-debug/compare/0.6.0...0.6.1
185202[ 0.6.0 ] : https://github.com/zeromake/docker-debug/compare/0.5.2...0.6.0
Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ brew install docker-debug
2626** 下载二进制文件**
2727``` shell
2828# MacOS
29- curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-darwin-amd64
29+ curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-darwin-amd64
3030
3131# Linux
32- curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-linux-amd64
32+ curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-linux-amd64
3333
3434chmod +x ./docker-debug
3535sudo mv docker-debug /usr/local/bin/
3636
3737# Windows
38- curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-windows-amd64.exe
38+ curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-windows-amd64.exe
3939```
4040
4141或者到 [ release page] ( https://github.com/zeromake/docker-debug/releases/lastest ) 下载最新可执行文件并添加到 PATH。
@@ -64,7 +64,7 @@ docker-debug 使用 `nicolaka/netshoot` 作为默认镜像来运行额外容器
6464你可以通过命令行 ` flag(--image) ` 覆盖默认镜像,或者直接修改配置文件 ` ~/.docker-debug/config.toml ` 中的 ` image ` 。
6565``` toml
6666# 配置文件版本号
67- version = " 0.6.3 "
67+ version = " 0.7.0 "
6868# 目标容器文件系统挂载点
6969mount_dir = " /mnt/container"
7070# 默认镜像
Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ brew install docker-debug
2727** download binary file**
2828``` shell
2929# MacOS
30- curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-darwin-amd64
30+ curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-darwin-amd64
3131
3232# Linux
33- curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-linux-amd64
33+ curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-linux-amd64
3434
3535chmod +x ./docker-debug
3636sudo mv docker-debug /usr/local/bin/
3737
3838# Windows
39- curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.6.3 /docker-debug-windows-amd64.exe
39+ curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.7.0 /docker-debug-windows-amd64.exe
4040```
4141
4242download the latest binary from the [ release page] ( https://github.com/zeromake/docker-debug/releases/lastest ) and add it to your PATH.
@@ -64,7 +64,7 @@ mv docker-debug /usr/local/bin
6464docker-debug uses nicolaka/netshoot as the default image to run debug container.
6565You can override the default image with cli flag, or even better, with config file ~ /.docker-debug/config.toml
6666``` toml
67- version = " 0.6.3 "
67+ version = " 0.7.0 "
6868image = " nicolaka/netshoot:latest"
6969mount_dir = " /mnt/container"
7070timeout = 10000000000
You can’t perform that action at this time.
0 commit comments