<html lang="en"> <head> <title>VCET</title> <script> function image2(){ var a= document.getElementById("ds"); ds.src="2.jpg"; setTimeout(image3, 3000); } function image3(){ var a= document.getElementById("ds"); ds.src="3.jpg"; setTimeout(image4, 3000); } function image4(){ var a= document.getElementById("ds"); ds.src="4.jpg"; setTimeout(image5, 3000); } function image5(){ var a= document.getElementById("ds"); ds.src="5.jpg"; setTimeout(image1, 3000); } function image1(){ var a= document.getElementById("ds"); ds.src="1.jpg"; setTimeout(image2, 3000); } </script> </head> <body> <h2 align="center">Velammal college of Engineering and Technology</h2> <center><img src="1.jpg" id="ds" width="240" height="320" /><script>setTimeout(image2, 3000);</script></center> </body> </html>
Docker is used to run software packages called "containers". Containers are isolated from each other and bundle their own tools, libraries and configuration files; they can communicate with each other through well-defined channels --Wikipedia I have already written a article about the containers you can check out in here https://thangaayyanar.blogspot.com/2018/06/containers.html This time, let's learn more about docker engine how we can use this. The important things we need to know in docker are Docker Image: The container can be created with the help of Image. The Image file consists of code, libraries, environment variable...
Comments
Post a Comment