Fundamental Tutorials of HTML

What is HTML? HTML stands for HyperText Markup Language. It is a markup language used to create web pages. HTML describes the structure of a web page by using tags and attributes. Tags are used to identify different elements on a web page, such as headings, paragraphs, images, and links. Attributes are used to provide additional information about a tag, such as the size of an image or the target of a link. HTML is a very simple language to

Read more

How to change a root password in a Docker image

Source: techrepublic.com If you deploy Docker containers based on an official imagine, you might want to set a root password for heightened security. You’ve probably already read that some Docker images were released with null passwords. This could have easily led to serious security issues on any container you might have deployed with that pulled image. Although this isn’t typical, you might want your containers to deploy with a heightened sense of security. While this may not be the best

Read more

How to create a webserver with Docker

Source:- steemit.com I’ve got some more docker for you. This time I’ll show you how to set up a simple webserver in a docker container. The Dockerfile One really important thing I didn’t cover last time was the Dockerfile. Now, if you have made a really good docker image that you want to share with others, you could just give them the image. They would have to trust you though, because it might be hard to tell if you were doing

Read more