• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » Docker Tutorial For Beginners : Part 1

By Abhishek Ghosh July 14, 2017 12:23 pm Updated on July 14, 2017

Docker Tutorial For Beginners : Part 1

Advertisement

Many users face issues to get started with Docker. Here is Docker tutorial for beginners. Containers provide a service oriented easy design. Current trend is to use Virtual Machines to run software applications. That is traditional virtualisation. Inside Virtual Machines applications run inside guest Operating System with virtual BIOS, virtual hardware powered by the server’s host OS and of course hardware. So each Virtual Machine has own kernel. Xen, KVM are typical example softwares for virtualization. OpenVZ virtualization uses no separate kernel for the guest OSes and that is why compared with Xen, KVM – Xen KVM versus OpenVZ. You can read about container virtualization and Docker with Linux kernel. You need to know about few concepts around IP address, ports, code dependencies and day to day things sysadmins typical used with. This amount of theory needed to know to use Docker. Rest is on getting started basic guide. With these components Part 1 of our Docker tutorial for beginners guide.

Docker Tutorial For Beginners - Part 1

 

Docker Tutorial For Beginners :

 

Take that we are running Ubuntu 16.04 LTS operating system. You should be an user other than root with root privilege :

Vim
1
2
3
4
5
sudo usermod -aG docker ${USER}
su - ${USER}
id -nG
# optionally add <your-username> user to Docker group
sudo usermod -aG docker your-username

Of course Docker installation package available in the official repository but may not be at the latest version.To install Docker, we will run :

Advertisement

---

Vim
1
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Then add the Docker repository :

Vim
1
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

Next we will run some expected commands :

Vim
1
2
3
4
5
sudo apt-get update
apt-cache policy docker-ce
# see output similar
sudo apt-get install -y docker-ce
sudo systemctl status docker

Docker installed and running. If we run :

Vim
1
docker

We will view all available subcommands. Command format of Docker is like :

Vim
1
docker [option] [command] [arguments]

hello-world is default test application :

Vim
1
docker run hello-world

We can search for images on Docker Hub by using docker command, to search foo we will run:

Vim
1
docker search foo

Docker Hub will return a list of all images when searched with valid name. We can download foo in this way :

Vim
1
docker pull foo

then run a container using it:

Vim
1
docker run foo

To see the images that have been downloaded :

Vim
1
docker images

Let us go ahead with foo example Docker Image. If we combine -i and -t we will get interactive shell access into the container as root:

Vim
1
docker run -it ubuntu

How you’ll use a real example like WordPress? Docker has documents for important images :

Vim
1
https://docs.docker.com/samples/wordpress/

Tagged With docker ce tutorial , beginner guide to creating apache docker container in windows , docker online tutorial , Docker tutorial 2017
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Docker Tutorial For Beginners : Part 1

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • How Setup Private Docker Registry on Ubuntu 16.04 LTS Cloud Server

    You Can Have Your Own Docker Registry on Own Cloud Server Instance. Here is How Setup Private Docker Registry on Ubuntu 16.04 LTS Cloud Server.

  • Analysis of Docker in DevOps : Part I

    Analysis of Docker in DevOps is a Series of Articles to Discuss the Solving Problems Arising within DevOps and Possible Fields of Application.

  • Navigating the Benefits of Docker Registry

    Docker Registry is a collection of repositories with indexes, access control rules. API is used by the clients to obtain images from repos.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy