Showing posts with label Docker. Show all posts
Showing posts with label Docker. Show all posts

Tuesday, July 13, 2021

Docker Learning Task 02 - How to create a basic docker network

 How to create a basic docker network


1. Create a docker network named mynetwork.

2. Configure it to use bridge drivers.

3. Set it to use subnet 192.168.40.0/24 and iprange 192.168.40.3/24.

Verification:
Verify the newly-created network using docker network inspect command 


Solution :
Check below the sample solution video for the above task.





PLEASE SUPPORT ME BY
LIKE || SUBSCRIBE || COMMENTS  on MY YOUTUBE CHANNEL AND BLOG 

STAY TUNED FOR MORE VIDEOS.......

#Learn    #Practice    #Re-Learn    #Improve    #Motivate
#Continue-Learning    #Apply    #Get-Help    #Help-Others

Monday, July 12, 2021

Docker Learning Task 01 - How to do volume mapping on docker

 How to do volume mapping on docker 


1. Create dir /opt/sample
2. go to /data Create a mapping.txt file with content "This is a docker sample volume mapping..!!"
3. Pull ubuntu image with latest tag.
4. Create a new container with name "test" from the image you just pulled.
5. Map the host volume /opt/sample with container volume /home. 
6. Copy that mapping.txt file to /opt/sample, Also please keep the container in running state.

verification:
check inside the container volume /home that mapping.txt file is presented with the correct content.


Solution :
Check below the sample solution video for the above task.




PLEASE SUPPORT ME BY
LIKE || SUBSCRIBE || COMMENTS  on MY YOUTUBE CHANNEL AND BLOG 

STAY TUNED FOR MORE VIDEOS.......

#Learn    #Practice    #Re-Learn    #Improve    #Motivate
#Continue-Learning    #Apply    #Get-Help    #Help-Others

Docker Learning Task 02 - How to create a basic docker network

 How to create a basic docker network 1. Create a docker network named  mynetwork . 2. Configure it to use bridge drivers. 3. Set it to use ...