Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Use shlex for exec string cmd, added integration testcase. | Patrick Hensley | 2014-10-22 | 1 | -2/+17 | |
| | | | ||||||
* | | | Unit and integration tests for exec. | Patrick Hensley | 2014-10-17 | 1 | -0/+28 | |
|/ / | ||||||
* | | Fixed integration tests | Joffrey F | 2014-09-08 | 1 | -6/+4 | |
| | | ||||||
* | | first cut of restart policy | Shreyas Karnik | 2014-08-26 | 1 | -0/+17 | |
|/ | ||||||
* | Merge pull request #268 from brutasse/265-dockerignore | Joffrey F | 2014-07-23 | 1 | -0/+39 | |
|\ | | | | | Add support for .dockerignore | |||||
| * | Add support for .dockerignore | Bruno Renié | 2014-07-23 | 1 | -0/+40 | |
| | | | | | | | | | | | | | | | | Fixes #265. Implementation is a bit more elaborate than docker's implementation and matches with the one proposed in dotcloud/docker#6869 to handle permission issues more nicely. | |||||
* | | allow docker client to connect to a remote host | Michael Merickel | 2014-07-07 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | to run the tests on a host without using the default unix socket, it's now possible to specify: DOCKER_HOST=tcp://localdocker:4243 env/bin/python setup.py test | |||||
* | | support specifying location of temp folders | Michael Merickel | 2014-07-05 | 1 | -1/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | TestWithBinds was failing when shared folders are used because /tmp was not shared from OS X to my VM. This fix allows the location of the temp folders to be changed via: TMPDIR=$(pwd) env/bin/python setup.py test This also properly cleans up temp folders which were sticking around before. | |||||
* | | fix ListContainers which was failing with "executable true; not found" | Michael Merickel | 2014-07-05 | 1 | -2/+2 | |
|/ | ||||||
* | Updated/fixed integration tests. Moved 'pull busybox' out of setUp(). ↵ | Joffrey F | 2014-06-20 | 1 | -44/+49 | |
| | | | | Commented out logs streaming test | |||||
* | Merge pull request #236 from rail44/feature-support-get-and-load-image | Joffrey F | 2014-06-17 | 1 | -1/+1 | |
|\ | | | | | Support get and load image | |||||
| * | Support get and load image | Satoshi Amemiya | 2014-06-02 | 1 | -1/+1 | |
| | | ||||||
* | | Fix joining of unicode and byte strings in python3. | Sam Riley | 2014-06-01 | 1 | -4/+4 | |
|/ | | | | | Check logs response in unit tests, and fix log integration tests for py3. | |||||
* | Merge pull request #210 from aanand/universally-compatible-chunking | Maxime Petazzoni | 2014-05-21 | 1 | -3/+3 | |
|\ | | | | | Universally-compatible reading of chunked streams | |||||
| * | Universally-compatible reading of chunked streams | Aanand Prasad | 2014-04-28 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Docker introduced newlines in stream output in version 0.9 (https://github.com/dotcloud/docker/pull/4276), but not to all endpoints - POST /images/create, for example, does not include them. This reverts to the old, less pleasant implementation of _stream_helper(), with a manual check for newlines to fix the problem described in #176 and fixed in #184, without the accompanying regression. It should work against Docker 0.8, 0.9 and 0.10, both when building and when pulling. | |||||
* | | Fix integration test regression | Aanand Prasad | 2014-04-28 | 1 | -1/+9 | |
|/ | | | | | The test for starting a container with volume binds hadn't been updated to use the new dictionary structure for the `binds` argument. | |||||
* | Moved APIError exception to docker.errors module. | Evgeniy L | 2014-04-07 | 1 | -4/+4 | |
| | ||||||
* | Fixed integration tests | shin- | 2014-04-04 | 1 | -2/+2 | |
| | ||||||
* | Merge branch 'volumes-from-as-list' of github.com:blackrobot/docker-py into ↵ | shin- | 2014-04-04 | 1 | -0/+30 | |
|\ | | | | | | | blackrobot-volumes-from-as-list | |||||
| * | Added test for container with volumes_from | Damon Jablons | 2014-04-01 | 1 | -0/+30 | |
| | | ||||||
* | | Updated unit tests API version, flake8 fixes | shin- | 2014-04-04 | 1 | -2/+3 | |
| | | ||||||
* | | Revert unneeded change | Joseph Schorr | 2014-04-04 | 1 | -1/+1 | |
| | | ||||||
* | | Make sure the build command in the client sends the auth credentials along. ↵ | Joseph Schorr | 2014-04-04 | 1 | -2/+25 | |
|/ | | | | Required for "FROM " lines that pull from private registries | |||||
* | Fixes for flake8 | Evgeniy L | 2014-03-28 | 1 | -7/+7 | |
| | | | | | | Next rules were broken * E265 block comment should start with '# ' * E713 test for membership should be 'not in' | |||||
* | Updated integration tests | shin- | 2014-02-18 | 1 | -27/+15 | |
| | ||||||
* | Merge pull request #119 from ureyes84/master | Joffrey F | 2014-01-16 | 1 | -0/+28 | |
|\ | | | | | Updated port function | |||||
| * | Improves code style | Ulises Reyes | 2013-12-15 | 1 | -5/+8 | |
| | | ||||||
| * | Refactored test. It now makes 2 calls to port | Ulises Reyes | 2013-12-15 | 1 | -17/+20 | |
| | | ||||||
| * | Shortened lines | Ulises Reyes | 2013-12-14 | 1 | -1/+2 | |
| | | ||||||
| * | Improved assertions in the port test | Ulises Reyes | 2013-12-14 | 1 | -2/+7 | |
| | | ||||||
| * | Updated the port function in order to parse the new NetworkSettings Port ↵ | Ulises Reyes | 2013-12-14 | 1 | -0/+16 | |
| | | | | | | | | dict (fixes #88) | |||||
* | | Rework auth config loading and use of auth data for login/pull/push | Maxime Petazzoni | 2014-01-07 | 1 | -5/+23 | |
| | | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com> | |||||
* | | Style fixes for flake8 | Maxime Petazzoni | 2013-12-24 | 1 | -0/+2 | |
| | | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com> | |||||
* | | Fix infinite loop in Client.logs(stream=True) caused by connection close. | Fedor Korotkiy | 2013-12-24 | 1 | -0/+17 | |
|/ | ||||||
* | Privileged option is part of host config, not config | Peter Yu | 2013-11-18 | 1 | -11/+22 | |
| | ||||||
* | Merge branch 'timeout-support' of github.com:mpetazzoni/docker-py into ↵ | shin- | 2013-11-15 | 1 | -4/+26 | |
|\ | | | | | | | | | | | | | | | | | mpetazzoni-timeout-support Conflicts: docker/client.py tests/integration_test.py tests/test.py | |||||
| * | Allow for configurable timeout on all client requests | Maxime Petazzoni | 2013-11-08 | 1 | -3/+25 | |
| | | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com> | |||||
* | | Merge branch 'v65-2' of github.com:yukw777/docker-py into yukw777-v65-2 | shin- | 2013-11-15 | 1 | -1/+1 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed some tests Conflicts: docker/client.py tests/fake_api.py tests/integration_test.py tests/test.py | |||||
| * | | many tests have been implemented | Peter Yu | 2013-11-10 | 1 | -1/+1 | |
| | | | ||||||
| * | | links implemented. use v1.6 by default now | Peter Yu | 2013-11-10 | 1 | -0/+69 | |
| | | | ||||||
| * | | pull, push, build are streamable | yukw777 | 2013-11-08 | 1 | -0/+39 | |
| |/ | ||||||
* | | Fix privileged test | shin- | 2013-11-15 | 1 | -1/+3 | |
| | | ||||||
* | | Merge branch 'master' of github.com:dotcloud/docker-py into yukw777-link | shin- | 2013-11-15 | 1 | -0/+19 | |
|\ \ | | | | | | | | | | | | | | | | | | | Fixed test_pull and test_pull_stream (don't assume headers content is empty) Conflicts: tests/test.py | |||||
| * | | Add signal argument to kill command | Daniel Graña | 2013-11-14 | 1 | -0/+19 | |
| | | | ||||||
* | | | links implemented. use v1.6 by default now | Peter Yu | 2013-11-12 | 1 | -0/+88 | |
|/ / | ||||||
* | | Merge branch 'stream-pull-request' of github.com:yukw777/docker-py into ↵ | shin- | 2013-11-11 | 1 | -0/+39 | |
|\ \ | |/ |/| | | | yukw777-stream-pull-request | |||||
| * | pull, push, build are streamable | yukw777 | 2013-11-08 | 1 | -0/+39 | |
| | | ||||||
* | | Add integration test for named container creation | Maxime Petazzoni | 2013-11-07 | 1 | -1/+11 | |
|/ | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com> | |||||
* | Flake8 compliance + flake8 tests in tox.ini | shin- | 2013-10-15 | 1 | -11/+49 | |
| | ||||||
* | Refactoring, Python 3 compatibility, Tests working with python 3, cleaned up ↵ | shin- | 2013-10-15 | 1 | -6/+36 | |
| | | | | imports. |