Skip to content

Commit

Permalink
Merge pull request #792 from wking/pointer-for-console-size
Browse files Browse the repository at this point in the history
specs-go/config: Use a pointer for Process.ConsoleSize
  • Loading branch information
crosbymichael authored May 9, 2017
2 parents 5a39b39 + d42b44b commit a6d839b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs-go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type Process struct {
// Terminal creates an interactive terminal for the container.
Terminal bool `json:"terminal,omitempty"`
// ConsoleSize specifies the size of the console.
ConsoleSize Box `json:"consoleSize,omitempty"`
ConsoleSize *Box `json:"consoleSize,omitempty"`
// User specifies user information for the process.
User User `json:"user"`
// Args specifies the binary and arguments for the application to execute.
Expand Down

0 comments on commit a6d839b

Please sign in to comment.