Git Product home page Git Product logo

docker-isthmos's Introduction

Development Status

Requirements Status

docker-isthmos

Docker UI

I wanted to create an easy to use docker UI with a small footprint so I used Flask and docker-py for the backend and w2ui for the frontend.

Install

To install the dependencies use pip:

$ pip install -r requirements.txt

Run

Start the application with the following command:

$ python run.py

Dockerize (optionally)

In case you want to build the container on your own (optionally)

$ docker build -t anselal/docker-isthmos:0.0.3 .

Otherwise download the container from hub.docker.com (optionally)

$ docker pull anselal/docker-isthmos:0.0.3

Run docker container with the following command:

$ docker run -d -p 5000:5000 -v /var/run/docker.sock:/var/run/docker.sock anselal/docker-isthmos:0.0.3

At this moment the UI supports:

  • Browsing, removing local images
  • Viewing, stopping, deleting running containers
  • Viewing local volumes
  • Searching hub.docker.com for images
  • Viewing some docker and system information like OS, RAM, CPU, Docker Version etc.

Work to be done

  • Run containers
  • Show all containers, not only running ones
  • Create and delete Volumes
  • Pull images

docker-isthmos's People

Contributors

anselal avatar vervas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

docker-isthmos's Issues

Problem install on Mac OS X

Hello,

I'm trying to install isthmos to my machine locally (MBP with mac os 10.11.6).
I get the following output:

$ sudo -H pip install -r requirements.txt
Requirement already satisfied (use --upgrade to upgrade): backports.ssl-match-hostname==3.5.0.1 in /Library/Python/2.7/site-packages (from -r requirements.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): click==6.6 in /Library/Python/2.7/site-packages (from -r requirements.txt (line 2))
Collecting docker-py==1.8.1 (from -r requirements.txt (line 3))
  Downloading docker_py-1.8.1-py2.py3-none-any.whl (41kB)
    100% |████████████████████████████████| 51kB 1.1MB/s
Collecting Flask==0.11.1 (from -r requirements.txt (line 4))
  Downloading Flask-0.11.1-py2.py3-none-any.whl (80kB)
    100% |████████████████████████████████| 81kB 2.2MB/s
Collecting ipaddress==1.0.16 (from -r requirements.txt (line 5))
  Downloading ipaddress-1.0.16-py27-none-any.whl
Collecting itsdangerous==0.24 (from -r requirements.txt (line 6))
  Downloading itsdangerous-0.24.tar.gz (46kB)
    100% |████████████████████████████████| 51kB 8.0MB/s
Collecting Jinja2==2.8 (from -r requirements.txt (line 7))
  Downloading Jinja2-2.8-py2.py3-none-any.whl (263kB)
    100% |████████████████████████████████| 266kB 3.0MB/s
Collecting MarkupSafe==0.23 (from -r requirements.txt (line 8))
  Downloading MarkupSafe-0.23.tar.gz
Requirement already satisfied (use --upgrade to upgrade): requests==2.10.0 in /Library/Python/2.7/site-packages (from -r requirements.txt (line 9))
Collecting six==1.10.0 (from -r requirements.txt (line 10))
  Downloading six-1.10.0-py2.py3-none-any.whl
Collecting websocket-client==0.37.0 (from -r requirements.txt (line 11))
  Downloading websocket_client-0.37.0.tar.gz (194kB)
    100% |████████████████████████████████| 194kB 4.5MB/s
Collecting Werkzeug==0.11.10 (from -r requirements.txt (line 12))
  Downloading Werkzeug-0.11.10-py2.py3-none-any.whl (306kB)
    100% |████████████████████████████████| 307kB 2.5MB/s
Installing collected packages: six, websocket-client, ipaddress, docker-py, itsdangerous, Werkzeug, MarkupSafe, Jinja2, Flask
  Found existing installation: six 1.4.1
    DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Uninstalling six-1.4.1:
Exception:
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 317, in run
    prefix=options.prefix_path,
  File "/Library/Python/2.7/site-packages/pip/req/req_set.py", line 736, in install
    requirement.uninstall(auto_confirm=True)
  File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 742, in uninstall
    paths_to_remove.remove(auto_confirm)
  File "/Library/Python/2.7/site-packages/pip/req/req_uninstall.py", line 115, in remove
    renames(path, new_path)
  File "/Library/Python/2.7/site-packages/pip/utils/__init__.py", line 267, in renames
    shutil.move(old, new)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
    copy2(src, real_dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2
    copystat(src, dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat
    os.chflags(dst, st.st_flags)
OSError: [Errno 1] Operation not permitted: '/tmp/pip-0loQwi-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

I can think of the installation being incompatible with Mac OS X. Is this the case, or the package six is problematic??

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.