We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 148c077 commit 459c7e2Copy full SHA for 459c7e2
2 files changed
cli/cli.go
@@ -177,5 +177,5 @@ func DisplayHelp(filename string) {
177
178
// DisplayVersion prints the version information for the program.
179
func DisplayVersion(filename string) {
180
- fmt.Printf("%s 1.0.4\n", filename)
+ fmt.Printf("%s 1.0.5-SNAPSHOT\n", filename)
181
}
main.go
@@ -120,6 +120,19 @@ func RunDexecContainer(cliParser cli.CLI) int {
120
if err != nil {
121
log.Fatal(err)
122
123
+
124
+ err = client.Logs(docker.LogsOptions {
125
+ Container: container.ID,
126
+ Stdout: true,
127
+ Stderr: true,
128
+ OutputStream:os.Stdout,
129
+ ErrorStream: os.Stderr,
130
+ })
131
132
+ if err != nil {
133
+ log.Fatal(err)
134
+ }
135
136
return code
137
138
0 commit comments