• Complain

Vohra Deepak. - Pro Docker: Learn how to use Containers as a Service for development and deployment

Here you can read online Vohra Deepak. - Pro Docker: Learn how to use Containers as a Service for development and deployment full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. genre: Computer / Science. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Vohra Deepak. Pro Docker: Learn how to use Containers as a Service for development and deployment
  • Book:
    Pro Docker: Learn how to use Containers as a Service for development and deployment
  • Author:
  • Genre:
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Pro Docker: Learn how to use Containers as a Service for development and deployment: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Pro Docker: Learn how to use Containers as a Service for development and deployment" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Apress, 2016. 265 p. ISBN: 978-1-4842-1829-7.
Docker is an open standards platform for developing, packaging and running portable distributed applications. Using Docker, developers and sysadmins may build, ship and run applications on any platform such as a PC, the cloud, data center or a virtual machine. Getting all the required dependencies for a software application including the code, the runtime libraries, and the system tools and libraries is often a challenge when developing and running an application. Docker simplifies the application development and execution by packaging all the required software for an application including the dependencies into a single software unit called a Docker image that may be run on any platform and environment.In this fast-paced book on the Docker open standards platform for developing, packaging and running portable distributed applications, Deepak Vorha discusses how to build, ship and run applications on any platform such as a PC, the cloud, data center or a virtual machine. He describes how to install and create Docker images. and the advantages off Docker containers.The remainder of the book is devoted to discussing using Docker with important software solutions. He begins by discussing using Docker with a traditional RDBMS using Oracle and MySQL. Next he moves on to NoSQL with chapter on MongoDB Cassandra, and Couchbase. Then he addresses the use of Docker in the Hadoop ecosystem with complete chapters on utilizing not only Hadoop, but Hive, HBase, Sqoop, Kafka, Solr and Spark.What You Will Learn:
How to install a Docker image;
How to create a Docker container;
How to run an Application in a Docker Container;
Use Docker with Apache Hadoop Ecosystem;
Use Docker with NoSQL Databases;
Use Docker with RDBMS.Who This Book Is For:
Apache Hadoop Developers. Database developers. NoSQL Developers. iPAD Amazon Kindle, PC , Cool Reader (EPUB), Calibre (EPUB, MOBI, AZW3), Adobe Digital Editions (EPUB), FBReader (EPUB, MOBI, AZW3).

Vohra Deepak.: author's other books


Who wrote Pro Docker: Learn how to use Containers as a Service for development and deployment? Find out the surname, the name of the author of the book and a list of all author's works by series.

Pro Docker: Learn how to use Containers as a Service for development and deployment — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Pro Docker: Learn how to use Containers as a Service for development and deployment" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Deepak Vohra 2016
Deepak Vohra Pro Docker 10.1007/978-1-4842-1830-3_1
1. Hello Docker
Deepak Vohra 1
(1)
BC, Canada
Docker is an open standards platform for developing, packaging and running portable distributed applications. Using Docker, developers and sysadmins may build, ship and run applications on any platform such as a PC, the cloud, data center or a virtual machine. Getting all the required dependencies for a software application including the code, the runtime libraries, and the system tools and libraries is often a challenge when developing and running an application. Docker simplifies the application development and execution by packaging all the required software for an application including the dependencies into a single software unit called a Docker image that may be run on any platform and environment.
What makes Docker images unique and different from virtual appliances, which are also software images (virtual machine images), is that while each virtual machine image runs on a separate guest OS, the Docker images run within the same OS kernel. Docker software runs in an isolated environment called a Docker container that includes its own filesystem and environment variables. Docker containers are isolated from each other and from the underlying OS.
A Docker container for a software application includes all that is required to run the software, and files may be copied from the host OS to a Docker container if required. As an application could require other software to develop a linked application, Docker containers may be linked, which makes the environment variables and software from another Docker container available to a Docker container.
Docker makes use of a Dockerfile to build an image. A Dockerfile consists of all the instructions such as what software to download, which commands to run, which network ports to expose, which files and directories to add to the filesystem, and which environment variables to set. A Docker image may be made an executable by providing an entrypoint. A Docker image may be built by providing a Dockerfile, or pre-built Docker images may be downloaded from the Docker Hub ( https://hub.docker.com/ ). The complete instruction set supported by Dockerfile can be found at http://docs.docker.com/engine/reference/builder/ .
In this chapter, we shall install the Docker engine on Linux, download a Hello World Docker image, and run a Docker container for a Hello World application. We have used Linux because some of the other software we have used, such as Apache Hadoop, is supported (both in development and production) only on Linux. We have used two commonly used distributions of Linux, Red Hat 7 and Ubuntu 14, but any of the supported installations ( https://docs.docker.com/v1.8/installation/ ) could be used.
  • Setting the Environment
  • Installing Docker on Red Hat 7
  • Uninstalling Docker
  • Installing a Specific Docker Version
  • Installing Docker on Ubuntu
  • Starting the Docker Service
  • Finding the Docker Service Status
  • Running the Docker Hello World Application
  • Downloading a Docker Image
  • Running an Application in a Docker Container
  • Listing Running Docker Containers
  • Accessing the Application Output on Command Line
  • Accessing the Application Output in a Browser
  • Stopping a Docker Container
  • Removing a Docker Container
  • Removing a Docker Image
  • Stopping the Docker Service
Setting the Environment
We shall use Amazon EC2 instances based on Linux for deploying Docker and Docker images. Linux is required to support 64 bit software. We have made use of two different 64 bit (required) Amazon Machine Images (AMIs):
Ubuntu Server 14.04 LTS (HVM), SSD Volume Type - ami-d05e75b8 64 bit
Red Hat Enterprise Linux version 7.1 (HVM), EBS General Purpose (SSD) Volume Type (ami-12663b7a) 64 bit
An Amazon EC2 instance based on the Ubuntu AMI is shown in Figure .
Figure 1-1 Amazon EC2 Instance Based on Ubuntu AMI To connect to an Amazon - photo 1
Figure 1-1.
Amazon EC2 Instance Based on Ubuntu AMI
To connect to an Amazon EC2 instance, the public IP address is used. The public IP address may be obtained from the EC2 Console as shown in Figure .
Figure 1-2 Obtaining the Public IP Address Connect to an Amazon EC2 Ubuntu - photo 2
Figure 1-2.
Obtaining the Public IP Address
Connect to an Amazon EC2 Ubuntu instance using SSH and the public IP address with the following command in which docker.pem is the private key format (.pem) generated by Amazon EC2.
ssh -i "docker.pem" ubuntu@54.86.12.113
The Ubuntu instance gets connected to as shown in Figure .
Figure 1-3 Connecting to Ubuntu Instance on Amazon EC2 from Local Host If a - photo 3
Figure 1-3.
Connecting to Ubuntu Instance on Amazon EC2 from Local Host
If a Red Hat AMI is used the command to connect to the Amazon EC2 instance is slightly different. Instead of the user ubuntu use the ec2-user user. For example, connect to the Linux instance using the following command in which docker.pem is the private key format (.pem) generated by Amazon EC2.
ssh -i "docker.pem" ec2-user@54.175.182.96
The RHEL 7.1 instance gets connected to as shown in Figure .
Figure 1-4 Connecting to RHEL Instance Run the following command to find if - photo 4
Figure 1-4.
Connecting to RHEL Instance
Run the following command to find if the Linux architecture supports 64 bit software.
uname -r
The x86_64 in the output as shown in Figure indicates that 64 bit is supported.
Figure 1-5 Finding Architecture Support Installing Docker on Red Hat 7 - photo 5
Figure 1-5.
Finding Architecture Support
Installing Docker on Red Hat 7
Two different methods for installing Docker on Red Hat are available: install with yum or install with script. Installing with yum requires a user to add the yum repo, which could be more involved than the script option. We have used the Docker installation script to install Docker.
As a user with sudo or root privileges, update the local repository packages with the following command.
sudo yum update
Run the Docker installation script to install Docker Engine.
curl -sSL https://get.docker.com/ | sh
Docker Engine gets installed as shown in Figure .
Figure 1-6 Installing Docker Engine Before starting the Docker service you - photo 6
Figure 1-6.
Installing Docker Engine
Before starting the Docker service, you should modify the docker.service file to disable the Docker start timeout. The docker.service file is in the /usr/lib/systemd/system directory, which has permissions set. Either run a sudo command or copy the file to a directory which does not have permissions set. For example, copy the docker.service to the root directory with the following command.
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Pro Docker: Learn how to use Containers as a Service for development and deployment»

Look at similar books to Pro Docker: Learn how to use Containers as a Service for development and deployment. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Pro Docker: Learn how to use Containers as a Service for development and deployment»

Discussion, reviews of the book Pro Docker: Learn how to use Containers as a Service for development and deployment and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.