+ {mounts.length === 0 ? (
+
+ No mounts found for this container.
+
+ ) : (
+
+
+
+ Type
+ Source
+ Destination
+ Mode
+ Read/Write
+
+
+
+ {mounts.map((mount, index) => (
+
+
+ {mount.Type}
+
+
+ {mount.Name || mount.Source}
+
+
+ {mount.Destination}
+
+
+ {mount.Mode || "-"}
+
+
+
+ {mount.RW ? "RW" : "RO"}
+
+
+
+ ))}
+
+
+ )}
+
+