Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated websocket-client dependency to latest version (now supports python 3) | Joffrey F | 2015-06-19 | 1 | -7/+2 |
| | |||||
* | Support 401 status for v2 registry endpoint | Joffrey F | 2015-06-19 | 1 | -3/+6 |
| | |||||
* | Merge branch 'master' of https://github.com/cesanta/docker-py into ↵ | Joffrey F | 2015-06-19 | 1 | -1/+3 |
|\ | | | | | | | cesanta-master | ||||
| * | Fix pinging an unauthenticated v2 registry | Marko Mikulicic | 2015-05-29 | 1 | -1/+3 |
| | | |||||
* | | 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 |
| |/ | |||||
* | | Merge pull request #614 from ibuildthecloud/extra-host-list | Joffrey F | 2015-06-18 | 1 | -1/+1 |
|\ \ | | | | | | | Allow extra_hosts to be a list too | ||||
| * | | Allow extra_hosts to be a list too | Darren Shepherd | 2015-05-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | The current map syntax does not allow the API equivalent of --add-host foo:1.1.1.1 --add-host foo:2.2.2.2 The above will map one hostname to two IPs. The above is valid in Docker. | ||||
* | | | Merge pull request #609 from mattmoor/master | Joffrey F | 2015-06-18 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Update docker-py to use a more portable sense of HOME. | ||||
| * | | | Update docker-py to use a more portable sense of HOME. | Matt Moore | 2015-05-21 | 1 | -1/+1 |
| |/ / | | | | | | | | | | | | | This makes docker-py consistent with Docker's newish way of establishing the path to .dockercfg: https://github.com/docker/docker/blob/master/pkg/homedir/homedir.go | ||||
* | | | Fixed import style | Joffrey F | 2015-06-18 | 1 | -2/+3 |
| | | | |||||
* | | | Merge branch 'use-wraps' of https://github.com/ssanderson/docker-py into ↵ | Joffrey F | 2015-06-18 | 1 | -0/+3 |
|\ \ \ | | | | | | | | | | | | | ssanderson-use-wraps | ||||
| * | | | Use functools.wraps for check_resource decorator. | Scott Sanderson | 2015-06-02 | 1 | -0/+3 |
| | |/ | |/| | | | | | | | | | | | | | This helps runtime introspection tools like the `help()` builting or IPython's `?` operator correctly find the underlying method instead of the decorator definition. | ||||
* | | | Merge branch 'allow-any-mode' of https://github.com/aanand/docker-py into ↵ | Joffrey F | 2015-06-18 | 1 | -1/+14 |
|\ \ \ | | | | | | | | | | | | | aanand-allow-any-mode | ||||
| * | | | Allow any mode string to be passed into a volume bind | Aanand Prasad | 2015-06-05 | 1 | -1/+14 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | Volume binds now take a "mode" key, whose value can be any string. "ro" is still supported. It is an error to specify both "ro" and "mode". Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | ||||
* | | | Bumped default API version == 1.19 | Joffrey F | 2015-06-18 | 1 | -1/+1 |
| | | | |||||
* | | | Only allow volume_driver param if API version >= 1.19 | Joffrey F | 2015-06-18 | 1 | -3/+8 |
| | | | |||||
* | | | Enforce consistent style for push and pull methods | Joffrey F | 2015-06-18 | 1 | -10/+13 |
| | | | |||||
* | | | Bumped version to 1.3.0 (dev) | Joffrey F | 2015-06-18 | 1 | -1/+1 |
| | | | |||||
* | | | 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 | 2 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | - 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> | ||||
* | | | Release 1.2.3 | Joffrey F | 2015-06-18 | 1 | -1/+1 |
| | | | |||||
* | | | Bump RC1.2.3-rc1 | Joffrey F | 2015-06-12 | 1 | -1/+1 |
| | | | |||||
* | | | Merge branch 'aanand-allow-binds-list' into 1.3.0-rc0 | Joffrey F | 2015-06-12 | 1 | -1/+7 |
|\ \ \ | |||||
| * | | | Allow binds to be specified as a list of strings | Aanand Prasad | 2015-06-12 | 1 | -0/+3 |
| |/ / | | | | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com> | ||||
| * | | Typo in ReadonlyRootfs | Darren Shepherd | 2015-05-25 | 1 | -1/+1 |
| |/ | | | | | | | read_only parameter does not work because the wrong name is sent to Docker | ||||
| * | Merge pull request #562 from smothiki/mems | Joffrey F | 2015-05-20 | 1 | -0/+3 |
| |\ | | | | | | | make memory units compatible with native docker cli | ||||
| | * | make memory units compatible with native docker cli | smothiki | 2015-05-07 | 1 | -0/+3 |
| | | | | | | | | | | | | Signed-off-by: sivaram mothiki <smothiki@engineyard.com> | ||||
* | | | Bumped version (rc) | Joffrey F | 2015-05-26 | 1 | -2/+2 |
|/ / | |||||
* | | 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 |
| | | | |||||
* | | | Fixed check_resource decorator | Joffrey F | 2015-05-20 | 1 | -5/+3 |
| | | | |||||
* | | | Fix #602. Raise ValueError on empty argument to inspect_{container,image}() ↵ | Matt Bogosian | 2015-05-17 | 2 | -0/+4 |
| | | | | | | | | | | | | 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/ | ||||
* | | | Merge pull request #593 from docker/deprecate_start_hostconfig | Joffrey F | 2015-05-08 | 1 | -0/+6 |
|\ \ \ | | | | | | | | | Deprecate start hostconfig | ||||
| * | | | Added deprecation warning for host config in start | Joffrey F | 2015-05-08 | 1 | -0/+6 |
| | |/ | |/| | |||||
* | | | Set 'CpusetCpus' with the value of the cpuset param in create_container | Joffrey F | 2015-05-08 | 1 | -0/+1 |
|/ / | |||||
* | | dev versionfix-586 | Joffrey F | 2015-05-06 | 1 | -1/+1 |
|/ | |||||
* | Bumped version | Joffrey F | 2015-05-04 | 2 | -2/+3 |
| | |||||
* | 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 |
| | | |||||
* | | Merge pull request #577 from pmoosh/master | Joffrey F | 2015-04-30 | 1 | -1/+1 |
|\ \ | | | | | | | Update client.py | ||||
| * | | Update client.py | Peter Mooshammer | 2015-04-29 | 1 | -1/+1 |
| |/ | |||||
* | | back to dev version | Joffrey F | 2015-04-30 | 1 | -1/+1 |
|/ | |||||
* | Bumped version, changelog1.2.1-release | Joffrey F | 2015-04-28 | 1 | -1/+1 |
| | |||||
* | Fix #573 | Joffrey F | 2015-04-28 | 1 | -6/+9 |
| |