github.com/portworx/docker@v1.12.1/docs/getstarted/index.md (about)

     1  <!--[metadata]>
     2  +++
     3  aliases = [
     4  "/mac/started/",
     5  "/windows/started/",
     6  "/linux/started/",
     7  "/getting-started/"
     8  ]
     9  title = "Get Started with Docker"
    10  description = "Getting started with Docker"
    11  keywords = ["beginner, getting started, Docker"]
    12  [menu.main]
    13  identifier = "getstart_all"
    14  parent = "tutorial_getstart_menu"
    15  weight="-1"
    16  +++
    17  <![end-metadata]-->
    18  
    19  
    20  # Get Started with Docker
    21  
    22  This tutorial is a for non-technical users who are interested in learning more about Docker. By following these steps, you'll learn fundamental Docker features while working through some simple tasks.
    23  
    24  Depending on how you got here, you may or may not have already downloaded Docker for your platform and installed it.
    25  
    26  ## Got Docker?
    27  
    28  If you haven't yet downloaded Docker for your platform or installed it, go to [Get Docker](step_one.md#step-1-get-docker).
    29  
    30  ## Ready to start working with Docker?
    31  
    32  If you have already downloaded and installed Docker, you are ready to run Docker commands! Go to [Verify your installation](step_one.md#step-3-verify-your-installation).
    33  
    34  
    35  ### What you'll learn and do
    36  
    37  You'll learn how to:
    38  
    39  * install Docker software for your platform
    40  * run a software image in a container
    41  * browse for an image on Docker Hub
    42  * create your own image and run it in a container
    43  * create a Docker Hub account and an image repository
    44  * create an image of your own
    45  * push your image to Docker Hub for others to use
    46  
    47  The getting started was user tested to reduce the chance of users having problems. For the best chance of success, follow the steps as written the first time before exploring on your own. It takes approximately 45 minutes to complete.
    48  
    49  ## Flavors of Docker
    50  
    51  This tutorial is designed as a getting started with Docker, and works the same whether you are using Docker for Mac, Docker for Windows, Docker on Linux, or Docker Toolbox (for older Mac and Windows systems).
    52  
    53  If you are using Docker Toolbox, you can use the Docker Quickstart Terminal to run Docker commands in a pre-configured environment instead of opening a command line terminal.
    54  
    55  If you are using Docker for Mac, Docker for Windows, or Docker on Linux, you will have Docker running in the background, and your standard command line terminal is already set up to run Docker commands.
    56  
    57  ## How much command line savvy do I need?
    58  
    59  The getting started tour uses Docker Engine CLI commands entered on the command line of a terminal window. You don't need to be a wizard at the command line, but you should be familiar with how to open your favorite shell or terminal, and run basic commands in that environment. It helps (but isn't required) to know how to navigate a directory tree, manipulate files, list running process, and so forth.
    60  
    61  
    62  Go to [the next page to install](step_one.md).
    63  
    64  
    65  &nbsp;