I m blessed that i have watched your videos! All things are explained in good way. All doubts are clear now.
@KrishnaRac9 ай бұрын
@ 20:24 in dockerfile you have defined multiple entrypoint, instruction, which is not allowed. docker only allows one entrypoint instruction in a dockerfile. So when you have multiple entrypoint instructions only the last one will be used. It will execute only "Hello World" and previos cmd and entrypoint will be ignored am i right ?
@kirtimalviya61623 ай бұрын
No, entrypoints can be used multiple times in the docker file, but CMD instruction can only be used once.
@nareshg54272 жыл бұрын
Excellent explanation, I have confusion from long time, now it's clear thank you soo much
@prajwalk9676 Жыл бұрын
The topic is clear which I had confusion from a long time. Thank you
@hananeryani40568 ай бұрын
This is an excellent video! It is worth watching every second if you are confused.
@ValaxyTechnologies8 ай бұрын
Glad it was helpful!
@MrDude272 жыл бұрын
best explanation on YT
@soumyadipchatterjee2267 Жыл бұрын
Struggling to understand the cmd and entrypoint , now its clear and crystal to me . Your last question answer will be it prints echo Hello World as the Entry point always replace all of the commands in CMD ,so here in Docker ps it's just create echo Hello-world container .😊
@ajeethkumarkandasamy5305 Жыл бұрын
Thank you for your clear explanation.It help me to understand very easily.
@TheUtubeppp10 ай бұрын
Excellent !! .Nicely explained this critical concept with example.
@ValaxyTechnologies9 ай бұрын
Many thanks!
@raajlinux2 жыл бұрын
Superbly explained Shankar sir
@pasinduperera8875 Жыл бұрын
Wow! nice explanation! Thank you very much.
@prashantsingh-sw6yn3 ай бұрын
Wow! nice explanation! Thank you very much.
@ValaxyTechnologies2 ай бұрын
Thank you !
@leelachollangi32712 жыл бұрын
Super explanation sir
@subhransukanungo170 Жыл бұрын
Nicely explained
@basavarajn99510 ай бұрын
Clear explanation simply super
@ValaxyTechnologies9 ай бұрын
Thank you so much
@Ethanhunt-p8u4 ай бұрын
super explanation 👍
@ValaxyTechnologies3 ай бұрын
Glad you liked it
@arunganesh20015 ай бұрын
As a trainer i like the way your explanation and helpful mind, dear. Ar shankar please do a course on python for devops and please share it in udemy
@ValaxyTechnologies5 ай бұрын
Noted, Thanks for the feedback
@ramanandkumar77802 жыл бұрын
Wonderfully explained 👍
@kapilch2 жыл бұрын
great explanation
@uditsharma67132 жыл бұрын
Nicely explained, thank you.
@christianibiri2 жыл бұрын
Excellent explained!
@IsfhanAhmed2 жыл бұрын
Wonderfully explained
@saurabhfule429511 ай бұрын
Very well Explained Thanks !!
@ValaxyTechnologies11 ай бұрын
Glad it was helpful!
@pralayninave8498 Жыл бұрын
Superbbb
@veerpalkaur9890 Жыл бұрын
Thank you sir
@malleshdappu54662 жыл бұрын
Can please do the vedio on docker COPY Vs ADD sir
@AlwaysOnHeaven9 ай бұрын
it's simple CMD command can copy the file but can't download the from url so that's why we use ADD command to download any file from url and copy it to specific directory👍
@midootesting6283 Жыл бұрын
First, the Git command will be installed. After that, the message "Hello world" will be echoed.
@SohanHadke5 ай бұрын
well explained
@ValaxyTechnologies4 ай бұрын
many thanks
@arunganesh20015 ай бұрын
I like your video very much, please update a course on udemy platform, devops on phyton for beginners
@saikrishnajonnala92902 жыл бұрын
Result is 1st line cmd instruction, and last line Entrypoint instruction is exicuted.
@amitsarkar42822 жыл бұрын
Sir, I found this Output "Hello World yum -y install git" after running the above script in Dockerfile.
@SushilKumar-ly6io2 жыл бұрын
expected the same output
@dipi4112 жыл бұрын
Very simple
@AKASHDPakash6 ай бұрын
Good one
@ValaxyTechnologies6 ай бұрын
Thanks for the feedback
@trishan79232 жыл бұрын
Suppose we have entry point and also cmd in a sigle file.....which one executes first either cmd or entrpoint????