Skip to content

Commit 462efaf

Browse files
committed
fix: container exit but not stop,check external stop
1 parent 3b0aa43 commit 462efaf

File tree

6 files changed

+1160
-84
lines changed

6 files changed

+1160
-84
lines changed

CHANGELOG.md

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,54 @@
1+
<a name="0.7.4"></a>
2+
## [0.7.4] - 2022-01-20
3+
### Docs
4+
- docker client version
5+
6+
### Feat
7+
- add -v $c/path
8+
9+
### Fix
10+
- container exit but not stop,check external stop
11+
- update docker term dep
12+
13+
14+
<a name="0.7.3"></a>
15+
## [0.7.3] - 2020-05-08
16+
### Fix
17+
- config version migration
18+
19+
20+
<a name="0.7.2"></a>
21+
## [0.7.2] - 2020-05-08
22+
### Feat
23+
- config add client version
24+
25+
### Fix
26+
- ci script error
27+
- ci script error
28+
- ci script error
29+
- upx reviewdog up version
30+
31+
132
<a name="0.7.0"></a>
233
## [0.7.0] - 2020-04-21
334
### Docs
435
- update readme
536

637
### Feat
738
- update mod dep
8-
- add support `gdb`
39+
40+
### Fix
41+
- update ci config
42+
- update ci config
43+
944

1045
<a name="0.6.3"></a>
1146
## [0.6.3] - 2019-12-15
1247
### Fix
1348
- check container is running
1449
- update change log
1550

51+
1652
<a name="0.6.2"></a>
1753
## [0.6.2] - 2019-06-20
1854
### Doc
@@ -193,8 +229,9 @@
193229
- tty = true
194230
- ignore add more
195231

196-
197-
[Unreleased]: https://github.com/zeromake/docker-debug/compare/0.7.0...HEAD
232+
[0.7.4]: https://github.com/zeromake/docker-debug/compare/0.7.3...0.7.4
233+
[0.7.3]: https://github.com/zeromake/docker-debug/compare/0.7.2...0.7.3
234+
[0.7.2]: https://github.com/zeromake/docker-debug/compare/0.7.0...0.7.2
198235
[0.7.0]: https://github.com/zeromake/docker-debug/compare/0.6.3...0.7.0
199236
[0.6.3]: https://github.com/zeromake/docker-debug/compare/0.6.2...0.6.3
200237
[0.6.2]: https://github.com/zeromake/docker-debug/compare/0.6.1...0.6.2

go.mod

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@ module github.com/zeromake/docker-debug
33
go 1.12
44

55
require (
6-
github.com/BurntSushi/toml v0.3.1
7-
github.com/Microsoft/go-winio v0.4.16 // indirect
6+
github.com/BurntSushi/toml v1.0.0
87
github.com/blang/semver v3.5.1+incompatible
9-
github.com/containerd/containerd v1.4.3 // indirect
10-
github.com/docker/distribution v2.7.1+incompatible // indirect
11-
github.com/docker/docker v20.10.2+incompatible
8+
github.com/containerd/containerd v1.5.9 // indirect
9+
github.com/docker/docker v20.10.12+incompatible
1210
github.com/docker/go-connections v0.4.0 // indirect
13-
github.com/docker/go-units v0.4.0 // indirect
14-
github.com/moby/term v0.0.0-20200915141129-7f0af18e79f2
11+
github.com/google/go-cmp v0.5.7 // indirect
12+
github.com/gorilla/mux v1.8.0 // indirect
13+
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
1514
github.com/morikuni/aec v1.0.0 // indirect
16-
github.com/opencontainers/go-digest v1.0.0 // indirect
17-
github.com/opencontainers/image-spec v1.0.1 // indirect
1815
github.com/pkg/errors v0.9.1
19-
github.com/sirupsen/logrus v1.7.0
20-
github.com/spf13/cobra v1.1.1
16+
github.com/sirupsen/logrus v1.8.1
17+
github.com/spf13/cobra v1.3.0
18+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
19+
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
20+
google.golang.org/grpc v1.43.0 // indirect
21+
gotest.tools/v3 v3.1.0 // indirect
2122
)

0 commit comments

Comments
 (0)