Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions pkg/standalone/containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,6 @@ func CreateControllerContainer(ctx context.Context, dockerClient *client.Client,
_ = dockerClient.ContainerRemove(ctx, resp.ID, container.RemoveOptions{Force: true})
return fmt.Errorf("failed to start container %s: %w", controllerContainerName, err)
}

// Copy Docker config file if it exists
if err := copyDockerConfigToContainer(ctx, dockerClient, resp.ID); err != nil {
// Log warning but continue - don't fail container creation
printer.Printf("Warning: failed to copy Docker config: %v\n", err)
}
return nil
}

Expand Down