Skip to content

Commit

Permalink
unbreak feature
Browse files Browse the repository at this point in the history
  • Loading branch information
peauc committed Sep 8, 2024
1 parent c80649e commit 02c86b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (c *Container) Remove(options container.RemoveOptions) error {
// Start starts the container
func (c *Container) Start() error {
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
Expand Down

0 comments on commit 02c86b1

Please sign in to comment.