unbreak feature

This commit is contained in:
Clément PÉAU 2024-09-08 22:07:18 +02:00
parent c80649e193
commit 02c86b1994

View file

@ -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