Andy Rothfusz
c75926be4f
Fix #1845 lxc typo in images
2013-09-10 14:54:35 -07:00
Andy Rothfusz
de75241b62
Merge pull request #1835 from metalivedev/1821-exampleslanding
...
fix #1821 landing page for examples
2013-09-10 14:14:00 -07:00
Kyle Conroy
c24c5c3b60
Merge branch 'master' of https://github.com/dotcloud/docker
2013-09-10 10:57:33 -07:00
Victor Vieux
2801624462
Merge pull request #1796 from shin-/api_1_5
...
*Remote API: Bumped API version to 1.5
*Registry: Implement login with private registry
*Remote API: Improve port mapping information
2013-09-09 16:58:54 -07:00
Andy Rothfusz
8ddfb4d6aa
Merge pull request #1828 from mmikulicic/patch-1
...
Please add go-dockerclient to docker API clients doc
2013-09-09 14:51:28 -07:00
Sridhar Ratnakumar
3c90e96b6d
remove docker-ruby from docs
...
we don't maintain it anymore as we now recommend proper HTTP api based clients instead.
2013-09-09 14:42:45 -07:00
Andy Rothfusz
0508bd8da7
Merge pull request #1773 from hectcastro/hc-riak-example
...
Add a Docker example for running Riak
2013-09-09 13:31:41 -07:00
Andy Rothfusz
c66a827c98
Merge pull request #1807 from tianon/gentoo-docs
...
Update Gentoo docs to reflect the package name change from app-emulation/lxc-docker to app-emulation/docker
2013-09-09 13:27:48 -07:00
Andy Rothfusz
fe99e51634
Created a little landing page for the examples, combined first two.
2013-09-09 13:19:07 -07:00
Brian Shumate
9749d94fb0
note about exiting from attachment prior to running
2013-09-09 10:30:06 -04:00
Brian Shumate
630ae43e7d
improve sentence readabilty
2013-09-09 10:19:45 -04:00
Marko Mikulicic
268928ab35
Please add go-dockerclient to docker API clients doc
2013-09-09 11:01:15 +01:00
Andy Rothfusz
03a28da5f7
Add Swiftype search to docs
2013-09-06 13:34:24 -07:00
Victor Vieux
20a763e519
fix indent in doc
2013-09-05 22:33:04 +00:00
Victor Vieux
5ec2fea6dd
Detect images/containers conflicts in docker inspect
2013-09-05 22:31:17 +00:00
Tianon Gravi
d368c2dee9
Update Gentoo docs to reflect the package name change from app-emulation/lxc-docker to app-emulation/docker as discussed in today's #docker-meeting
2013-09-05 13:36:56 -06:00
Tianon Gravi
82dd417ef6
Reformat Gentoo install instructions to 80 columns
2013-09-05 13:36:16 -06:00
Bouke Haarsma
fdf1fccd3e
Fix memory recommendations (Byte, not bit)
2013-09-05 10:40:11 +02:00
Andy Rothfusz
f0cdbaa6c8
Merge pull request #1801 from vcoisne/master
...
Add step to docker installation using vagrant (Mac, Linux)
2013-09-04 18:15:22 -07:00
Andy Rothfusz
e0d6bae1eb
Merge pull request #1789 from tommyblue/patch-1
...
Adds instruction about UDP port redirection
2013-09-04 18:14:34 -07:00
Victor Coisne
ad04cacd28
Add step to docker installation using vagrant (Mac, Linux)
2013-09-04 17:47:18 -07:00
Deni Bertovic
62823cfb97
fixed docs for installing binary
2013-09-05 00:06:41 +02:00
shin-
98edd0e751
Updated docs for API v1.5
2013-09-04 22:58:58 +02:00
shin-
34edbd4f7e
Merge branch '1357-implement-login-with-private-registry' of git://github.com/mhennings/docker into mhennings-1357-implement-login-with-private-registry
2013-09-04 22:26:55 +02:00
Elias Probst
396274fa6d
Typo
2013-09-04 21:56:51 +02:00
Tommaso Visconti
ad5796de9f
Adds instruction about UDP port redirection
2013-09-04 19:17:10 +02:00
Andy Rothfusz
58ea690b41
Merge pull request #1784 from proger/patch-1
...
add new docker api client for erlang, erldocker
2013-09-04 10:01:29 -07:00
Andy Rothfusz
3b92ab3465
Merge pull request #1783 from briehanlombaard/typos
...
Fixed typos
2013-09-04 10:00:10 -07:00
Andy Rothfusz
76f97a64fa
Merge pull request #1785 from thijsterlouw/update_commandline_cli
...
Fix documentation index for cli
2013-09-04 09:59:30 -07:00
Thijs Terlouw
368d0385e1
Fix documentation index for cli
2013-09-04 13:21:44 +02:00
Vladimir Kirillov
58ffd03bf1
add new docker api client for erlang, erldocker
2013-09-04 12:53:38 +03:00
Tianon Gravi
9ce1d02ef6
Add Gentoo documentation
2013-09-04 02:59:18 -06:00
Briehan Lombaard
251d1261b0
Fixed typos
2013-09-04 10:52:53 +02:00
Hector Castro
fac4cedcc1
Add a Docker example for running Riak.
2013-09-03 16:30:40 -04:00
Marco Hennings
fcee6056dc
Login against private registry
...
To improve the use of docker with a private registry the login
command is extended with a parameter for the server address.
While implementing i noticed that two problems hindered authentication to a
private registry:
1. the resolve of the authentication did not match during push
because the looked up key was for example localhost:8080 but
the stored one would have been https://localhost:8080
Besides The lookup needs to still work if the https->http fallback
is used
2. During pull of an image no authentication is sent, which
means all repositories are expected to be private.
These points are fixed now. The changes are implemented in
a way to be compatible to existing behavior both in the
API as also with the private registry.
Update:
- login does not require the full url any more, you can login
to the repository prefix:
example:
docker logon localhost:8080
Fixed corner corner cases:
- When login is done during pull and push the registry endpoint is used and
not the central index
- When Remote sends a 401 during pull, it is now correctly delegating to
CmdLogin
- After a Login is done pull and push are using the newly entered login data,
and not the previous ones. This one seems to be also broken in master, too.
- Auth config is now transfered in a parameter instead of the body when
/images/create is called.
2013-09-03 20:45:49 +02:00
Andy Rothfusz
75df4953f4
Merge pull request #1758 from mattapperson/patch-1
...
Added NodeJS library
2013-09-03 11:02:34 -07:00
Thijs Terlouw
6380b42edb
Add 2 missing cli commands to docs (events + insert) and alphabetically order docker output
2013-09-03 16:35:22 +02:00
Matt Apperson
e42d3a1bfa
Added NodeJS library
2013-08-31 22:13:15 -04:00
Andy Rothfusz
8ee4473d92
Merge pull request #1704 from dhrp/ubuntu-install-finger-fingerprint
...
added apt-key finger tip and fingerprint in ubuntu installation page
2013-08-30 16:15:19 -07:00
Andy Rothfusz
2ea19238ff
Merge pull request #1744 from dsissitka/patch-7
...
Updated "Use -> The Basics" to use ubuntu:12.10.
2013-08-30 10:44:54 -07:00
Morten Siebuhr
1a8a540209
Document FROM <image>:<tag> Dockerfile instruction.
2013-08-30 15:23:32 +02:00
Andy Rothfusz
110d3b7794
Merge pull request #1736 from ramonvanalteren/patch-1
...
Update python_web_app.rst
2013-08-29 18:36:53 -07:00
dsissitka
c0e95fa68a
Updated "Use -> The Basics" to use ubuntu:12.10.
...
ubuntu:latest doesn't have nc. ubuntu:12.10 does.
2013-08-29 21:05:18 -04:00
Andy Rothfusz
9b029a0854
Merge pull request #1739 from dotcloud/add-docs-dockerfile
...
Added a Dockerfile which installs all deps and builds the Docs
2013-08-29 17:42:17 -07:00
Nick Stinemates
c6702bebe1
added a Dockerfile which installs all deps and builds the docs.
2013-08-30 00:13:32 +00:00
Victor Vieux
050cf70136
Merge pull request #1721 from andrewmunsell/patch-2
...
Add privileged flag in documentation for container creation
2013-08-29 17:05:40 -07:00
Andy Rothfusz
0f91418b26
Merge pull request #1729 from dsissitka/patch-6
...
Fixed a minor syntax error.
2013-08-29 16:27:22 -07:00
Andy Rothfusz
c4394decf8
Merge pull request #1717 from metalivedev/1685-updateinstallation
...
Fix #1685 : Notes on production use. General installation cleanup.
2013-08-29 16:06:00 -07:00
Ramon van Alteren
559724ac35
Update python_web_app.rst
...
Fixed typo in the WEB_PORT command, missing sudo in front of docker command
2013-08-30 00:37:47 +02:00
Andy Rothfusz
c46d9933ec
Merge pull request #1727 from dsissitka/patch-5
...
Fixed a minor syntax error.
2013-08-29 11:05:22 -07:00