Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2017-01-03 20:15:06
Size: 63
Editor: PieterSmit
Comment:
Revision 5 as of 2017-01-03 21:59:37
Size: 518
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
format wiki #format wiki
Line 5: Line 5:
 *  * On Ubuntu
   * install docker
   * add user to docker group, logout and log in again
     {{{ adduser Me docker }}}

   * docker search ubuntu:14.04
     {{{ $ docker search ubuntu:14.04 }}}
     {{{ $ docker search --no-trunc --stars=1 etcd }}}

   * downloaded images
     {{{ docker images }}}

   * run interactively
     {{{ $ docker run -it ubuntu:14.04 }}}

   * view running images and historic
     {{{ $ docker ps -a }}}


linux docker notes

  • On Ubuntu
    • install docker
    • add user to docker group, logout and log in again
      •  adduser Me docker 

    • docker search ubuntu:14.04
      •  $ docker search ubuntu:14.04   $ docker search --no-trunc --stars=1 etcd 

    • downloaded images
      •  docker images 

    • run interactively
      •  $ docker run -it ubuntu:14.04 

    • view running images and historic
      •  $ docker ps -a 

...

docker (last edited 2023-09-21 21:03:25 by PieterSmit)