$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

GNU/Linux Ubuntu Docker Tutorial for Beginners

April 18, 2017 | By the+gnu+linux+evangelist.

Making Containers

  1. 2. Installing Docker

    How to Install Docker on Ubuntu Easy Guide

    Here Docker Installation Guide
    How to Install Docker on Ubuntu
  2. 3. Exploring Docker Commands

    Now to Explore Docker Commands
    First, to show the Help play:

    Copy
    sudo docker help

    Again to Display Help for a single Command:

    Copy
    sudo docker help [dockerCommand]

    Example for the create command:

    Copy
    sudo docker help create
  3. 4. Creating Docker Container

    How to Create Docker Containers
    With this we’ll Pull the Docker Images from the Docker Repositories:
    (Although it’s possible to Install a Local Docker Image…)

    Copy
    sudo docker create --name redis redis

    This Create a Redis DB Image Named ‘redis’
    The -p Flag is related to the Connecting Port
    The -d Flag Detach the Instance and Run it on Background.

  4. 5. Listing Docker Containers

    To List the Docker Instance
    To List All:

    Copy
    sudo docker ps -a

    And only the Running ones:

    Copy
    sudo docker ps

Contents