+
{template.description}
+
+ {#if template.type}
+
+ Type
+ {#if template.type === 1}
+ Container
+ {:else if template.type === 2}
+ Swarm
+ {:else if template.type === 3}
+ Kubernetes
+ {:else}
+ Unknown
+ {/if}
+
+ {/if}
+ {#if template.platform}
+
+ Platform
+ {template.platform}
+
+ {/if}
+ {#if template.image}
+
+ Image
+ {template.image}
+
+ {/if}
+ {#if template.command}
+
+ Command
+ {template.command}
+
+ {/if}
+ {#if typeof template.interactive === 'boolean'}
+
+ Interactive
+ {template.interactive ? 'Yes' : 'No'}
+
+ {/if}
+ {#if template.ports}
+
+
Ports
+
+ {#each template.ports as port}{port}{/each}
+
+
+ {/if}
+ {#if template.volumes}
+
+
Volumes
+
+ {#each template.volumes as volume}{volume.container}{/each}
+
+
+ {/if}
+
+
+