+
+
+
+
Docker Compose
+
+
+
+
+ {templateInfo?.template.domains &&
+ templateInfo.template.domains.length > 0 && (
+ <>
+
+
+
+
+
Domains
+
+
+ {templateInfo.template.domains.map((domain, index) => (
+
+
+ {domain.serviceName}
+
+
+
Port: {domain.port}
+ {domain.host &&
Host: {domain.host}
}
+ {domain.path &&
Path: {domain.path}
}
+
+
+ ))}
+
+
+ >
+ )}
+
+ {templateInfo?.template.envs &&
+ templateInfo.template.envs.length > 0 && (
+ <>
+
+
+
+
+
+ Environment Variables
+
+
+
+ {templateInfo.template.envs.map((env, index) => (
+
+ {env}
+
+ ))}
+
+
+ >
+ )}
+
+ {templateInfo?.template.mounts &&
+ templateInfo.template.mounts.length > 0 && (
+ <>
+
+
+
+
+
Mounts
+
+
+ {templateInfo.template.mounts.map((mount, index) => (
+
{
+ setSelectedMount(mount);
+ setMountOpen(true);
+ }}
+ >
+ {mount.filePath}
+
+ ))}
+
+
+ >
+ )}
+
+
+