diff --git a/src/tree/containers/ContainerTreeItem.ts b/src/tree/containers/ContainerTreeItem.ts index 0ac5c576bb..957de2cd76 100644 --- a/src/tree/containers/ContainerTreeItem.ts +++ b/src/tree/containers/ContainerTreeItem.ts @@ -95,6 +95,8 @@ export class ContainerTreeItem extends ToolTipParentTreeItem implements MultiSel public get iconPath(): vscode.ThemeIcon { if (this._item.status?.includes('(unhealthy)')) { return new vscode.ThemeIcon('warning', new vscode.ThemeColor('problemsWarningIcon.foreground')); + } else if (this._item.status?.includes('(health: starting)')) { + return new vscode.ThemeIcon('debug-rerun', new vscode.ThemeColor('debugIcon.startForeground')); } else { return getContainerStateIcon(this._item.state); }