Monday, July 8, 2013

Docker desktop: your desktop over ssh running inside of a Docker container

http://blog.docker.io/2013/07/docker-desktop-your-desktop-over-ssh-running-inside-of-a-docker-container/

9 comments:

  1. $ sudo add-apt-repository ppa:dotcloud/lxc-docker

    ReplyDelete
  2. $ sudo docker -d &

    // en Ubuntu no hace falta, el paquete instala el archivo init y levanta el servicio automaticamente

    ReplyDelete
  3. $ docker pull base
    Pulling repository base from https://index.docker.io/v1
    Pulling image 27cf784147099545 () from base
    Pulling 27cf784147099545 metadata
    Pulling 27cf784147099545 fs layer
    Downloading 1.573 MB/94.86 MB ( 2%)
    (...)

    ReplyDelete
  4. $ docker images
    REPOSITORY TAG ID CREATED SIZE
    base latest b750fe79269d 3 months ago 24.65 kB (virtual 180.1 MB)
    base ubuntu-12.10 b750fe79269d 3 months ago 24.65 kB (virtual 180.1 MB)
    base ubuntu-quantal b750fe79269d 3 months ago 24.65 kB (virtual 180.1 MB)
    base ubuntu-quantl b750fe79269d 3 months ago 24.65 kB (virtual 180.1 MB)

    ReplyDelete
  5. $ docker build -t horacio/docker-desktop git://github.com/rogaha/docker-desktop.git
    Step 1 : FROM ubuntu:12.10
    Pulling repository ubuntu from https://index.docker.io/v1
    Pulling image b750fe79269d2ec9a3c593ef05b4332b1d1a02a62b4accb2c21d589ff2f5f2dc (12.10) from ubuntu
    ---> b750fe79269d
    Step 2 : MAINTAINER Roberto G. Hashioka "roberto_hashioka@hotmail.com"
    ---> Running in eb5887b173eb
    ---> 794059b32fe3
    Step 3 : RUN apt-get update
    ---> Running in 996987bdbda9
    ---> 67959070b8b2
    Step 4 : RUN export DEBIAN_FRONTEND=noninteractive
    ---> Running in 7159210dcddf
    ---> 04814d556b25
    Step 5 : RUN apt-get install -y xserver-xephyr xdm fluxbox rox-filer ssh
    ---> Running in 07df128dbc16
    Error build: The command [/bin/sh -c apt-get install -y xserver-xephyr xdm fluxbox rox-filer ssh] returned a non-zero code: 100
    The command [/bin/sh -c apt-get install -y xserver-xephyr xdm fluxbox rox-filer ssh] returned a non-zero code: 100

    ReplyDelete
  6. $ docker -dns="8.8.8.8" build -t horacio/docker-desktop git://github.com/rogaha/docker-desktop.git

    ReplyDelete

Note: Only a member of this blog may post a comment.