virli/tutorial/docker-orchestration/disp/index.html
2018-10-17 22:30:02 +02:00

58 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Docker layers</title>
<style>
body { background: white; text-align: center; }
table { width: 100%; }
</style>
</head>
<body>
<h1>Difference image/container</h1>
<table>
<tr>
<td>
<img src="image-layers.jpg" alt="Image layers">
</td>
<td>
<img src="container-layers.jpg" alt="Container layers">
</td>
</tr>
</table>
<hr>
<h1>Block Device <em>Union</em></h1>
<table>
<tr>
<td>
<img src="base_device.jpg" alt="Base device">
</td>
<td>
<img src="two_dm_container.jpg" alt="Base device">
</td>
</tr>
</table>
<hr>
<h1>Filesystem UnionFS</h1>
<table>
<tr>
<td>
<figure>
<img src="aufs_layers.jpg" alt="AUFS layers">
<figcaption>AUFS</figcaption>
</figure>
</td>
<td>
<figure>
<img src="overlay_constructs.jpg" alt="AUFS layers">
<figcaption>OverlayFS</figcaption>
</figure>
</td>
</tr>
</table>
<br>
<p style="text-align: left">
Images from <a href="https://docs.docker.com/">docs.docker.com</a>.
</p>
</body>
</html>