mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add links to libraries, fix #800
This commit is contained in:
commit
ca4597e9d7
3 changed files with 29 additions and 5 deletions
|
@ -46,12 +46,11 @@ clean:
|
||||||
-rm -rf $(BUILDDIR)/*
|
-rm -rf $(BUILDDIR)/*
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
#-rm -rf $(BUILDDIR)/*
|
|
||||||
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||||
@echo
|
@echo
|
||||||
@echo "Build finished. The documentation pages are now in $(BUILDDIR)/html."
|
@echo "Build finished. The documentation pages are now in $(BUILDDIR)/html."
|
||||||
|
|
||||||
server:
|
server: docs
|
||||||
@cd $(BUILDDIR)/html; $(PYTHON) -m SimpleHTTPServer 8000
|
@cd $(BUILDDIR)/html; $(PYTHON) -m SimpleHTTPServer 8000
|
||||||
|
|
||||||
site:
|
site:
|
||||||
|
@ -62,12 +61,13 @@ site:
|
||||||
|
|
||||||
connect:
|
connect:
|
||||||
@echo connecting dotcloud to www.docker.io website, make sure to use user 1
|
@echo connecting dotcloud to www.docker.io website, make sure to use user 1
|
||||||
@cd _build/website/ ; \
|
@echo or create your own "dockerwebsite" app
|
||||||
|
@cd $(BUILDDIR)/website/ ; \
|
||||||
dotcloud connect dockerwebsite ; \
|
dotcloud connect dockerwebsite ; \
|
||||||
dotcloud list
|
dotcloud list
|
||||||
|
|
||||||
push:
|
push:
|
||||||
@cd _build/website/ ; \
|
@cd $(BUILDDIR)/website/ ; \
|
||||||
dotcloud push
|
dotcloud push
|
||||||
|
|
||||||
$(VERSIONS):
|
$(VERSIONS):
|
||||||
|
|
|
@ -1056,3 +1056,27 @@ Here are the steps of 'docker run' :
|
||||||
|
|
||||||
In this first version of the API, some of the endpoints, like /attach, /pull or /push uses hijacking to transport stdin,
|
In this first version of the API, some of the endpoints, like /attach, /pull or /push uses hijacking to transport stdin,
|
||||||
stdout and stderr on the same socket. This might change in the future.
|
stdout and stderr on the same socket. This might change in the future.
|
||||||
|
|
||||||
|
==================================
|
||||||
|
Docker Remote API Client Libraries
|
||||||
|
==================================
|
||||||
|
|
||||||
|
These libraries have been not tested by the Docker Maintainers for
|
||||||
|
compatibility. Please file issues with the library owners. If you
|
||||||
|
find more library implementations, please list them in Docker doc bugs
|
||||||
|
and we will add the libraries here.
|
||||||
|
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
| Language/Framework | Name | Repository |
|
||||||
|
+======================+================+============================================+
|
||||||
|
| Python | docker-py | https://github.com/dotcloud/docker-py |
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
| Ruby | docker-ruby | https://github.com/ActiveState/docker-ruby |
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
| Ruby | docker-client | https://github.com/geku/docker-client |
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
| Javascript | docker-js | https://github.com/dgoujard/docker-js |
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
| Javascript (Angular) | dockerui | https://github.com/crosbymichael/dockerui |
|
||||||
|
| **WebUI** | | |
|
||||||
|
+----------------------+----------------+--------------------------------------------+
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
APIs
|
APIs
|
||||||
====
|
====
|
||||||
|
|
||||||
This following :
|
Your programs and scripts can access Docker's functionality via these interfaces:
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 3
|
:maxdepth: 3
|
||||||
|
|
Loading…
Add table
Reference in a new issue