summaryrefslogtreecommitdiff
path: root/docker
Commit message (Collapse)AuthorAgeFilesLines
* Test fixes and updated Makefile for 1.12 testingtest_fixes_1.12Joffrey F2016-08-031-6/+7
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Avoid crashing in update_headers decorator when headers kwarg is None1148-update-headers-fixJoffrey F2016-08-021-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add support for sysctl when creating containerJari Takkala2016-08-011-1/+8
| | | | | | Closes #1144 Signed-off-by: Jari Takkala <jtakkala@gmail.com>
* More explicit debug for config path logicAanand Prasad2016-08-011-4/+9
| | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* Add support for IPv6 docker host connections.1135-ipv6-docker-hostJoffrey F2016-07-271-20/+18
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* dev versionJoffrey F2016-07-261-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge branch 'release'Joffrey F2016-07-261-1/+1
|\
| * Bump to 1.9.01.9.0-releaseJoffrey F2016-07-261-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * Set custom user agent on clientBen Firshman2016-07-262-1/+6
| | | | | | | | Signed-off-by: Ben Firshman <ben@firshman.co.uk>
| * Bump to 1.9.0-rc21.9.0-rc2Joffrey F2016-06-281-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * signal in Client.kill can be a string containing the signal's nameJoffrey F2016-06-281-1/+3
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Default to npipe address on WindowsAanand Prasad2016-07-261-1/+3
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Send LinkLocalIPs as part of IPAMConfig dictionarycompose-3757-linklocal-fixJoffrey F2016-07-251-4/+4
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add optional auth config to docker pushKeerthan Reddy Mala2016-07-221-10/+17
| | | | | | | | Signed-off-by: Keerthan Reddy Mala <kmala@deis.com>
* | Set custom user agent on clientBen Firshman2016-07-202-1/+6
| | | | | | | | Signed-off-by: Ben Firshman <ben@firshman.co.uk>
* | Rename read methods for clarityAanand Prasad2016-07-131-5/+6
| | | | | | | | | | | | | | read_socket() is now just read(), because its behaviour is consistent with `os.read` et al. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Rename read_iter() to frames_iter()Aanand Prasad2016-07-132-4/+4
| | | | | | | | | | | | | | This makes it more clearly high-level and distinct from the raw data-reading functions Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Rename next_packet_size to next_frame_sizeAanand Prasad2016-07-131-3/+3
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Reorder socket.py methodsAanand Prasad2016-07-131-13/+13
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Remove unused importsAanand Prasad2016-07-131-4/+1
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Document all socket utility methodsAanand Prasad2016-07-131-2/+14
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | RefactorsAanand Prasad2016-07-131-14/+13
| | | | | | | | | | | | | | | | - `read_data()` raises an exception instead of asserting `False` - `next_packet_size()` uses `read_data()` - Renamed `packet_size` arg to `n` for consistency Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Move read_loop() into docker.utils.socket.read_iter()Aanand Prasad2016-07-132-12/+11
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Remove duplicated methods from container.pyAanand Prasad2016-07-131-31/+1
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Move socket-reading test helpers into docker.utils.socketAanand Prasad2016-07-131-0/+49
| | | | | | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* | Read from socket after sending TCP upgrade headers.Joffrey F2016-07-133-7/+64
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add hijack hints for non-detached exec api callsDavid Gageot2016-07-131-1/+9
| | | | | | | | Signed-off-by: David Gageot <david@gageot.net>
* | Add hijack hints for attach api callsDavid Gageot2016-07-131-2/+8
| | | | | | | | Signed-off-by: David Gageot <david@gageot.net>
* | volumes,create: support adding labelsTomas Tomecek2016-07-131-1/+12
| | | | | | | | | | | | Fixes #1102 Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
* | Pass X-Registry-Auth when building an imageJustin Michalicek2016-07-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | * Initialize headers variable in BuildApiMixin.build() as a dict rather than as None. This way the correct object gets passed to _set_auth_headers() even if no headers were set in build() * Changing object from None to {} in BuildApiMixin._set_auth_headers() removed because it changes the object reference, so has no effect on calling code. Signed-off-by: Justin Michalicek <jmichalicek@gmail.com>
* | signal in Client.kill can be a string containing the signal's nameJoffrey F2016-06-281-1/+3
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for link-local IPs in endpoint config1107-link-local-ipsJoffrey F2016-06-242-3/+12
|/ | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* 1.9.0 RC1Joffrey F2016-06-161-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1066 from yunzhu-li/blkio-controlJoffrey F2016-06-151-2/+58
|\ | | | | Add support for Block IO constraints in HostConfig
| * Add support for Block IO constraints in HostConfigyunzhu-li2016-06-051-2/+58
| | | | | | | | | | | | | | | | | | | | | | | | This adds support for Block IO constraint options: - blkio-weight - blkio-weight-device - device-read-bps - device-write-bps - device-read-iops - device-write-iops Signed-off-by: yunzhu-li <contact@yunzhu.li>
* | Merge pull request #1079 from docker/1024-npipe-supportJoffrey F2016-06-148-9/+310
|\ \ | | | | | | npipe support
| * | Remove obsolete, commented out code1024-npipe-supportJoffrey F2016-06-081-3/+0
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Update parse_host and testsJoffrey F2016-06-022-4/+5
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Reorganize docker.transport packageJoffrey F2016-06-026-3/+4
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | npipe support cleanupJoffrey F2016-06-028-44/+15
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Experimental npipe:// supportJoffrey F2016-06-027-1/+332
| |/ | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Unify endpoint config creation when using connect_container_to_networkJoffrey F2016-06-131-19/+5
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add ipv[46]_address params to create_endpoint_config.Joffrey F2016-06-131-5/+16
|/ | | | | | Update networks documentation with exhaustive API docs Signed-off-by: Joffrey F <joffrey@docker.com>
* support new Py3.5 Enum signalsThomas Grainger2016-05-191-1/+1
| | | | Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
* support Python 3.5Thomas Grainger2016-05-191-8/+2
| | | | Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
* Add support for creating internal networksJonathan Giannuzzi2016-05-181-1/+8
| | | | Signed-off-by: Jonathan Giannuzzi <jonathan@giannuzzi.be>
* Resolve path traversal in .dockerignore patternsAanand Prasad2016-05-161-0/+3
| | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* Don't set socket timeout if it's already disabled when streamingKevin Frommelt2016-05-101-6/+21
| | | | Signed-off-by: Kevin Frommelt <kevin.frommelt@gmail.com>
* Update ChangeLog and version.py (1.8.1)1.8.1-releaseJoffrey F2016-04-281-1/+1
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1050 from docker/1044-fix-login-defaultJoffrey F2016-04-281-3/+1
|\ | | | | Let server-side determine which serveraddress to use when unspecified