mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
unbreak feature
This commit is contained in:
parent
c80649e193
commit
02c86b1994
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ func (c *Container) Remove(options container.RemoveOptions) error {
|
||||||
// Start starts the container
|
// Start starts the container
|
||||||
func (c *Container) Start() error {
|
func (c *Container) Start() error {
|
||||||
c.Log.Warn(fmt.Sprintf("starting container %s", c.Name))
|
c.Log.Warn(fmt.Sprintf("starting container %s", c.Name))
|
||||||
return c.Client.ContainerStart(context.Background(), c.ID, dockerTypes.ContainerStartOptions{})
|
return c.Client.ContainerStart(context.Background(), c.ID, container.StartOptions{})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stop stops the container
|
// Stop stops the container
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue