Docker opens up a tiny new window that does nothing

后端 未结 2 784
礼貌的吻别
礼貌的吻别 2021-02-07 20:27

This is related to a previous question-

Under Ubuntu 12.04 when I run any docker command like:

sudo docker pull ubuntu

The focus is los

2条回答
  •  灰色年华
    2021-02-07 20:36

    There are 2 different programs named "docker". You are using the wrong one.

    (I actually just wasted the whole afternoon on this problem too. Hopefully this answer will save someone else some time.)

    What you (and I) were hoping to have been using was the "docker" from: https://www.docker.io/

    However, what you (and I) were actually using was the "docker" created by Ben Jansens that is a "Docking System Tray".

    Here is a short excerpt from the README of this other "docker":

    Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE3 and GNOME2. It can be used to replace the panel in either environment, allowing you to have a system tray without running the KDE/GNOME panel.

    (This is the program creating that tiny window.)

    I got this other "docker" by doing a:

    sudo apt-get install docker

    ... on Linux Mint 16 (Petra). Which is based on Ubuntu 13.10 (Saucy).

    (You may have done something similar.)

    For me the solution was to get rid of this other "docker" with:

    sudo apt-get remove docker

    ... and (as I am about to do) go get the "docker" from www.docker.io


    Just a side note, the way I figured this out was by typing the command:

    docker --help

    And then noting the name of the author ("Ben Jansens"). And then searching the web for "Ben Jansens docker".

    That brought me to this README file: http://tint2.googlecode.com/svn-history/r31/trunk/src/systray/README

提交回复
热议问题