mirror of
https://github.com/docker/compose.git
synced 2026-02-13 12:09:29 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f216ddbf05 | ||
|
|
afabfbdf8d | ||
|
|
bff44e6943 | ||
|
|
b61fb7ef90 |
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,6 +1,19 @@
|
||||
Change log
|
||||
==========
|
||||
|
||||
1.26.1 (2020-06-30)
|
||||
-------------------
|
||||
|
||||
### Features
|
||||
|
||||
- Bump `docker-py` from 4.2.1 to 4.2.2
|
||||
|
||||
### Bugs
|
||||
|
||||
- Enforce `docker-py` 4.2.1 as minimum version when installing with pip
|
||||
|
||||
- Fix context load for non-docker endpoints
|
||||
|
||||
1.26.0 (2020-06-03)
|
||||
-------------------
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from __future__ import absolute_import
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.26.0'
|
||||
__version__ = '1.26.1'
|
||||
|
||||
@@ -144,6 +144,11 @@ def docker_client(environment, version=None, context=None, tls_version=None):
|
||||
if tls:
|
||||
context.set_endpoint("docker", host=host, tls_cfg=tls, skip_tls_verify=not verify)
|
||||
|
||||
if not context.is_docker_host():
|
||||
raise UserError(
|
||||
"The platform targeted with the current context is not supported.\n"
|
||||
"Make sure the context in use targets a Docker Engine.\n")
|
||||
|
||||
kwargs['base_url'] = context.Host
|
||||
if context.TLSConfig:
|
||||
kwargs['tls'] = context.TLSConfig
|
||||
|
||||
@@ -5,7 +5,7 @@ certifi==2020.4.5.1
|
||||
chardet==3.0.4
|
||||
colorama==0.4.3; sys_platform == 'win32'
|
||||
distro==1.5.0
|
||||
docker==4.2.1
|
||||
docker==4.2.2
|
||||
docker-pycreds==0.4.0
|
||||
dockerpty==0.4.1
|
||||
docopt==0.6.2
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
set -e
|
||||
|
||||
VERSION="1.26.0"
|
||||
VERSION="1.26.1"
|
||||
IMAGE="docker/compose:$VERSION"
|
||||
|
||||
|
||||
|
||||
2
setup.py
2
setup.py
@@ -37,7 +37,7 @@ install_requires = [
|
||||
'texttable >= 0.9.0, < 2',
|
||||
'websocket-client >= 0.32.0, < 1',
|
||||
'distro >= 1.5.0, < 2',
|
||||
'docker[ssh] >= 3.7.0, < 5',
|
||||
'docker[ssh] >= 4.2.1, < 5',
|
||||
'dockerpty >= 0.4.1, < 1',
|
||||
'six >= 1.3.0, < 2',
|
||||
'jsonschema >= 2.5.1, < 4',
|
||||
|
||||
@@ -223,6 +223,9 @@ class ServiceTest(DockerClientTestCase):
|
||||
service.start_container(container)
|
||||
assert container.get('HostConfig.ReadonlyRootfs') == read_only
|
||||
|
||||
@pytest.mark.xfail(True, reason='Getting "Your kernel does not support '
|
||||
'cgroup blkio weight and weight_device" on daemon start '
|
||||
'on Linux kernel 5.3.x')
|
||||
def test_create_container_with_blkio_config(self):
|
||||
blkio_config = {
|
||||
'weight': 300,
|
||||
|
||||
Reference in New Issue
Block a user