Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix stop timeout bugfix_649 | Joffrey F | 2015-06-24 | 1 | -1/+1 |
| | |||||
* | Updated websocket-client dependency to latest version (now supports python 3) | Joffrey F | 2015-06-19 | 1 | -7/+2 |
| | |||||
* | Merge branch 'pullfix' of https://github.com/glogiotatidis/docker-py into ↵ | Joffrey F | 2015-06-19 | 1 | -1/+4 |
|\ | | | | | | | | | | | | | glogiotatidis-pullfix Conflicts: docker/client.py | ||||
| * | Fix pull parameter for docker server version < 1.7. | Giorgos Logiotatidis | 2015-06-01 | 1 | -0/+6 |
| | | |||||
| * | Set default value for pull to False on build(). Fixes 622. | Giorgos Logiotatidis | 2015-06-01 | 1 | -1/+1 |
| | | |||||
* | | Enforce consistent style for push and pull methods | Joffrey F | 2015-06-18 | 1 | -10/+13 |
| | | |||||
* | | Add and document a decode parameter for build | Philipp Möller | 2015-06-18 | 1 | -2/+3 |
| | | | | | | | | | | This makes the build method consistent with the events method and adds some convenience. | ||||
* | | Add raise_for_status check to push and pull methods | Bradley Cicenas | 2015-06-18 | 1 | -0/+4 |
| | | | | | | | | as underlying exceptions(such as push already in progress) will be hidden in the stream generator otherwise. | ||||
* | | Add volume_driver param to client.create_container | Luke Marsden | 2015-06-18 | 1 | -2/+3 |
|/ | | | | | | | - Add appropriate test which also asserts that volume names can be passed through to drivers. - Add new param to docs. Signed-off-by: Luke Marsden <luke@clusterhq.com> | ||||
* | Only allow privileged exec_create for API version >= 1.19 | Joffrey F | 2015-05-20 | 1 | -2/+6 |
| | |||||
* | Merge branch 'privilege' of https://github.com/tonicbupt/docker-py into ↵ | Joffrey F | 2015-05-20 | 1 | -2/+3 |
|\ | | | | | | | tonicbupt-privilege | ||||
| * | add privilege for exec_create | tonic | 2015-05-08 | 1 | -2/+3 |
| | | |||||
* | | Fix #602. Raise ValueError on empty argument to inspect_{container,image}() ↵ | Matt Bogosian | 2015-05-17 | 1 | -0/+2 |
| | | | | | | | | methods. | ||||
* | | Fix the parameter mismatch | HackToday | 2015-05-12 | 1 | -1/+1 |
| | | | | | | | | Closes-Issue: #597 | ||||
* | | Fix typo in deprecated insert method. Fixes #595 | Maxime Petazzoni | 2015-05-11 | 1 | -1/+1 |
| | | | | | | s/fornat/format/ | ||||
* | | Added deprecation warning for host config in start | Joffrey F | 2015-05-08 | 1 | -0/+6 |
|/ | |||||
* | Bumped version | Joffrey F | 2015-05-04 | 1 | -1/+2 |
| | |||||
* | Merge pull request #576 from ctrlhxj/fix_exec_resize | Joffrey F | 2015-04-30 | 1 | -8/+5 |
|\ | | | | | exec_resize is incorrectly passing param as json | ||||
| * | exec_resize is incorrectly passing param as json | Xiaojian Huang | 2015-04-28 | 1 | -8/+5 |
| | | |||||
* | | Update client.py | Peter Mooshammer | 2015-04-29 | 1 | -1/+1 |
|/ | |||||
* | * Separate file to store constants | Joffrey F | 2015-04-27 | 1 | -11/+16 |
| | | | | * Added container_limits param to Client.build | ||||
* | Updated exec API documentationexec_rework | Joffrey F | 2015-04-27 | 1 | -3/+1 |
| | |||||
* | Exec API tests | Joffrey F | 2015-04-27 | 1 | -1/+1 |
| | |||||
* | Properly implement exec API | Joffrey F | 2015-04-27 | 1 | -5/+48 |
| | |||||
* | Merge pull request #564 from docker/check_resource_not_none | Joffrey F | 2015-04-27 | 1 | -4/+35 |
|\ | | | | | Added check_resource decorator | ||||
| * | Added check_resource decorator to interrupt command if container or image ↵ | Joffrey F | 2015-04-24 | 1 | -4/+35 |
| | | | | | | | | argument is None | ||||
* | | fix(client.py): unification the container argument | Pahaz Blinov | 2015-04-26 | 1 | -0/+2 |
|/ | |||||
* | Handle ID truncate on client side in containers list (and changed default ↵client_side_trunc | Joffrey F | 2015-04-22 | 1 | -1/+4 |
| | | | | from True to False) | ||||
* | Add support for ulimits in host_config | Joffrey F | 2015-04-22 | 1 | -2/+8 |
| | |||||
* | Merge branch 'sam/import-improvements' of ↵ | Joffrey F | 2015-04-22 | 1 | -28/+86 |
|\ | | | | | | | | | | | | | | | | | https://github.com/ssssam/docker-py into ssssam-sam/import-improvements Conflicts: docker/client.py docker/unixconn/unixconn.py tests/integration_test.py | ||||
| * | Rewrite Client.import_image() and add less-magical versions | Sam Thursfield | 2015-01-05 | 1 | -19/+72 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rather than have one function that can do 5 things and attempts to guess what the user wanted, it's good to have a function for each possible method of importing an image. Error cases are handled a lot better this way. The unit test test_import_image_from_file() was changed to be test_import_image_from_bytes(), because if we try to import a temporary file in the test, the 'data' parameter of the 'fake_request' object is an instance of a funny internal type like <_io.BufferedReader name='/tmp/tmpc9chux'> and it's very hard to match such a thing with `mock.assert_called_with()`. | ||||
| * | Rework Unix connection code so that 'chunked' transfers work | Sam Thursfield | 2015-01-05 | 1 | -10/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows streaming a system to the 'import' command, rather than having to read the whole thing into memory before sending it. Previously both the UnixAdapter and the docker.Client objects would track the 'base URL' of the Docker daemon (socket path in the case of local Unix-domain socket connections). The Client object would construct URLs which contained the path to the socket with the path of the Docker API call appended. The UnixHTTPConnection instance would then remove the known socket path from the URL. This relied on all calls going through the HTTPConnection.request() function, where the URL could be rewritten. In the case of 'chunked' HTTP POST requests this doesn't happen, so such calls would request a path still including the socket path and would receive a 404 error. The client now constructs URLs containing just the path of the desired API endpoint, and expects the Unix socket transport to know the path to the Docker daemon's socket. | ||||
* | | Merge branch 'pull_auth' of https://github.com/hibooboo2/docker-py into ↵ | Joffrey F | 2015-04-22 | 1 | -10/+15 |
|\ \ | | | | | | | | | | hibooboo2-pull_auth | ||||
| * | | Add auth config to pull | James Harris | 2015-02-18 | 1 | -10/+15 |
| | | | |||||
* | | | IPC sharing implementation | Yaroslav Molochko | 2015-03-30 | 1 | -2/+6 |
| | | | |||||
* | | | Added some type and version checks; removed security_opt from ↵ | Joffrey F | 2015-03-25 | 1 | -3/+8 |
| | | | | | | | | | | | | container_config (as this is invalid) | ||||
* | | | Add security_opt for create/start | Eric Windisch | 2015-03-24 | 1 | -4/+7 |
| | | | | | | | | | | | | Signed-off-by: Eric Windisch <eric@windisch.us> | ||||
* | | | Merge branch 'master' of github.com:docker/docker-py | Joffrey F | 2015-03-20 | 1 | -4/+4 |
|\ \ \ | |||||
| * \ \ | Merge pull request #531 from josephpage/dockerignore-eof-windows | Joffrey F | 2015-03-20 | 1 | -1/+1 |
| |\ \ \ | | | | | | | | | | | Windows : fix EOL of .dockerignore file | ||||
| | * | | | Windows : str.splitlines instead of str.split | Joseph Page | 2015-03-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | To be able to read `.dockerignore` file edited on Windows, python-py may use the multi-platform split function `str.splitlines()` Ref : https://docs.python.org/2/library/stdtypes.html#str.splitlines | ||||
| * | | | | Update default API version to 1.18 | Aanand Prasad | 2015-03-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | ||||
| * | | | | Implemented labels for docker-py | André Martins | 2015-03-17 | 1 | -2/+2 |
| |/ / / | | | | | | | | | | | | | Signed-off-by: André Martins <martins@noironetworks.com> | ||||
* | | | | Use get instead of bracket notation | Joffrey F | 2015-03-20 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge branch 'fix-port-host-net' of https://github.com/ssanderson/docker-py ↵ | Joffrey F | 2015-03-20 | 1 | -2/+8 |
|\ \ \ \ | |/ / / |/| | | | | | | | into ssanderson-fix-port-host-net | ||||
| * | | | MAINT: Don't re-index multiple times. | Scott Sanderson | 2015-03-16 | 1 | -2/+2 |
| | | | | |||||
| * | | | BUG: Don't barf on Client.port when no port settings provided. | Scott Sanderson | 2015-03-16 | 1 | -0/+6 |
| | | | | |||||
* | | | | Don't allow 'version' param in AutoVersionClient ctor | Joffrey F | 2015-03-05 | 1 | -0/+4 |
| | | | | |||||
* | | | | Streamline exceptions for auto version ; retrieve_server_version into ↵ | Joffrey F | 2015-03-05 | 1 | -7/+12 |
| | | | | | | | | | | | | | | | | protected method | ||||
* | | | | detect server version when version="auto" | Tomas Tomecek | 2015-03-05 | 1 | -12/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | heavily inspired by PR#281 Signed-off-by: Tomas Tomecek <ttomecek@redhat.com> | ||||
* | | | | Merge branch 'master' of github.com:docker/docker-py | Joffrey F | 2015-03-04 | 1 | -0/+6 |
|\ \ \ \ |