Top Docker Images

Ubuntu – Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world’s most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide. Centos – CentOS Linux is a community-supported distribution derived from sources freely

Read more

Assignment for docker day 1

What is the use of “docker update” commands? with example and image Docker update The update command helps to dynamically update the configuration of one or more containers.Update command can be use for prevent containers from consuming too many resources from their Docker hostIt is not supported for windows containers

Read more

Assignment for docker day 1

What is the use of “docker wait” commands? with example and image Docker wait Blocks until one or more containers stop, then print their exit codes. How to check:Start a container in the backgrounddocker run –name abhi httpdRun docker waitdocker wait abhiKill the container from duplicat terminal and check the return value in actual terminaldocker stop abhi

Read more

Loops in PHP

A Loop is an Iterative Control Structure that involves executing the same number of code a number of times until a certain condition is fulfilled Types of Loops in PHP while  do-while loop for loop foreach loop 1 . While :-The while loop is an entry control loop like for loops i.e., it first check the condition at the start of the loop and if its true then it enters the loop and executes the block of statement which is

Read more
1 60 61 62 63 64 185