PinnedDocker basic commands in linuxInstallation of docker: yum install docker -y To start docker service: service docker start #shows all the docker images in our docker server: docker images #shows all the docker containers in our docker server: docker ps -a #shows all the runnin...May 17, 2023·2 min read·43
Changing permissions for files and directories in shellBefore changing any permissions, please check the current permissions of a file by ll command, Here the first part(-rw-r--r--) represents the type of file and its permissions: 1st character is file type, - is a regular file, d is a directory 2,3,4 c...May 11, 2023·2 min read·21