mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Release notes for 1.27.4: - Bugs - Remove path checks for bind mounts - Fix port rendering to output long form syntax for non-v1 - Add protocol to the docker socket address Release notes for 1.27.3: - Bugs - Merged max_replicas_per_node on docker-compose config. - Fixed depends_on serialization on docker-compose config. - Fixed scaling when some containers are not running on docker-compose up. - Enabled relative paths for driver_opts.device for local driver. - Allowed strings for cpus fields. Release notes for 1.27.2: - Bugs - Fix bug on docker-compose run container attach Release notes for 1.27.1: - Bugs - Fix compose run when service.scale is specified - Allow driver property for external networks as temporary workaround for swarm network propagation issue - Pin new internal schema version to 3.9 as the default - Preserve the version when configured in the compose file Release notes for 1.27.0: - Features - Merge 2.x and 3.x compose formats and align with COMPOSE_SPEC schema - Implement service mode for ipc - Pass COMPOSE_PROJECT_NAME environment variable in container mode - Make run behave in the same way as up - Use docker build on docker-compose run when COMPOSE_DOCKER_CLI_BUILD environment variable is set - Use docker-py default API version for engine queries (auto) - Parse network_mode on build - Bugs - Ignore build context path validation when building is not required - Fix float to bytes conversion via docker-py bump to 4.3.1 - Fix scale bug when deploy section is set - Fix docker-py bump in setup.py - Fix experimental build failure detection - Fix context propagation to docker cli - Miscellaneous - Drop support for Python 2.7 - Add script for docs syncronization - Bump docker-py to 4.3.1 - Bump tox to 3.19.0 - Bump virtualenv to 20.0.30 Release notes for 1.26.2: - Bugs - Enforce docker-py 4.2.2 as minimum version when installing with pip Release notes for 1.26.1: - 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 Signed-off-by: Ricardo Salveti <ricardo@foundries.io> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
42 lines
1.2 KiB
BlitzBasic
42 lines
1.2 KiB
BlitzBasic
SUMMARY = "Multi-container orchestration for Docker"
|
|
HOMEPAGE = "https://www.docker.com/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[md5sum] = "6c25d3b92596dc529edc337cc837eae1"
|
|
SRC_URI[sha256sum] = "5a5690f24c27d4b43dcbe6b3fae91ba680713208e99ee863352b3bae37bcaa83"
|
|
|
|
SRC_URI += "file://0001-setup.py-remove-maximum-version-requirements.patch \
|
|
file://0001-setup.py-import-fastentrypoints.patch \
|
|
"
|
|
|
|
DEPENDS += "${PYTHON_PN}-fastentrypoints-native"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
${PYTHON_PN}-cached-property \
|
|
${PYTHON_PN}-certifi \
|
|
${PYTHON_PN}-chardet \
|
|
${PYTHON_PN}-colorama \
|
|
${PYTHON_PN}-distro \
|
|
${PYTHON_PN}-docker \
|
|
${PYTHON_PN}-docker-pycreds \
|
|
${PYTHON_PN}-dockerpty \
|
|
${PYTHON_PN}-docopt \
|
|
${PYTHON_PN}-dotenv \
|
|
${PYTHON_PN}-fcntl \
|
|
${PYTHON_PN}-idna \
|
|
${PYTHON_PN}-jsonschema \
|
|
${PYTHON_PN}-misc \
|
|
${PYTHON_PN}-paramiko \
|
|
${PYTHON_PN}-pyyaml \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-terminal \
|
|
${PYTHON_PN}-texttable \
|
|
${PYTHON_PN}-urllib3 \
|
|
${PYTHON_PN}-wcwidth \
|
|
${PYTHON_PN}-websocket-client \
|
|
"
|