FF-1914: New docker plugin

This commit is contained in:
John Andrews
2024-11-04 09:58:13 +13:00
parent 5d389edd85
commit 707b1a7398
2 changed files with 2 additions and 3 deletions

View File

@@ -42,14 +42,13 @@ public class DockerExecute: Node
/// Gets or sets additional outputs
/// </summary>
[StringArray(3)]
[Required]
public List<string> AdditionalOutputs { get; set; } = [];
/// <summary>
/// Gets or sets the docker command
/// </summary>
[Required]
[TextVariable(3)]
[TextArea(3, true)]
public string Command { get; set; } = string.Empty;
/// <inheritdoc />

View File

@@ -13,7 +13,7 @@ public class Plugin : FileFlows.Plugin.IPlugin
public string MinimumVersion => "1.0.4.2019";
/// <inheritdoc />
public string Icon => "fab fa-docker";
public string Icon => "svg:docker";
/// <inheritdoc />
public void Init() { }