Changes between Version 13 and Version 14 of Docker HowTo Install


Ignore:
Timestamp:
09/05/16 15:30:13 (8 years ago)
Author:
saj.issa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docker HowTo Install

    v13 v14  
    26265. Open the /etc/apt/sources.list.d/docker.list file in your favorite editor.
    2727
    28 If the file doesn’t exist, create it.
     28   If the file doesn’t exist, create it.
    2929
    30306. Remove any existing entries.
     
    32327. Add an entry for your Ubuntu operating system.
    3333
    34 The possible entries are:
     34   The possible entries are:
    3535
    36 Ubuntu Xenial 16.04 (LTS)
     36   Ubuntu Xenial 16.04 (LTS)
    3737
    3838    {{{deb https://apt.dockerproject.org/repo ubuntu-xenial main}}}
     
    5252    {{{$ apt-cache policy docker-engine}}}
    5353
    54 From now on when you run apt-get upgrade, APT pulls from the new repository.
     54    From now on when you run apt-get upgrade, APT pulls from the new repository.
    5555
    5656
     
    91913. Install Docker.
    9292
    93     $ sudo apt-get install docker-engine
     93    {{{$ sudo apt-get install docker-engine}}}
    9494
    9595    Start the docker daemon.
    9696
    97     $ sudo service docker start
     97    {{{$ sudo service docker start}}}
    9898
    9999    Verify docker is installed correctly.
    100100
    101     $ sudo docker run hello-world
     101    {{{$ sudo docker run hello-world}}}
    102102
    103103    This command downloads a test image and runs it in a container. When the container runs, it prints an informational message. Then, it exits.