mirror of https://github.com/docker/compose.git
Merge pull request #7389 from ulyssessouza/general-bumps-for-1_26
General bumps to prepare 1.26.0
This commit is contained in:
commit
9c5351cf27
|
@ -1,9 +1,9 @@
|
||||||
ARG DOCKER_VERSION=19.03.5
|
ARG DOCKER_VERSION=19.03.8
|
||||||
ARG PYTHON_VERSION=3.7.6
|
ARG PYTHON_VERSION=3.7.7
|
||||||
ARG BUILD_ALPINE_VERSION=3.11
|
ARG BUILD_ALPINE_VERSION=3.11
|
||||||
ARG BUILD_DEBIAN_VERSION=slim-stretch
|
ARG BUILD_DEBIAN_VERSION=slim-stretch
|
||||||
ARG RUNTIME_ALPINE_VERSION=3.11.3
|
ARG RUNTIME_ALPINE_VERSION=3.11.5
|
||||||
ARG RUNTIME_DEBIAN_VERSION=stretch-20191224-slim
|
ARG RUNTIME_DEBIAN_VERSION=stretch-20200414-slim
|
||||||
|
|
||||||
ARG BUILD_PLATFORM=alpine
|
ARG BUILD_PLATFORM=alpine
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!groovy
|
#!groovy
|
||||||
|
|
||||||
def dockerVersions = ['19.03.5']
|
def dockerVersions = ['19.03.8']
|
||||||
def baseImages = ['alpine', 'debian']
|
def baseImages = ['alpine', 'debian']
|
||||||
def pythonVersions = ['py37']
|
def pythonVersions = ['py37']
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ Docker Compose
|
||||||
==============
|
==============
|
||||||

|

|
||||||
|
|
||||||
## :exclamation: The docker-compose project announces that as Python 2 reaches it's EOL, versions 1.25.x will be the last to support it. For more information, please refer to this [issue](https://github.com/docker/compose/issues/6890).
|
## :exclamation: The docker-compose project announces that as Python 2 has reached it's EOL, versions 1.26.x will be the last to support it. For more information, please refer to this [issue](https://github.com/docker/compose/issues/6890).
|
||||||
|
|
||||||
Compose is a tool for defining and running multi-container Docker applications.
|
Compose is a tool for defining and running multi-container Docker applications.
|
||||||
With Compose, you use a Compose file to configure your application's services.
|
With Compose, you use a Compose file to configure your application's services.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!groovy
|
#!groovy
|
||||||
|
|
||||||
def dockerVersions = ['19.03.5', '18.09.9']
|
def dockerVersions = ['19.03.8', '18.09.9']
|
||||||
def baseImages = ['alpine', 'debian']
|
def baseImages = ['alpine', 'debian']
|
||||||
def pythonVersions = ['py37']
|
def pythonVersions = ['py37']
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.25.1"
|
VERSION="1.25.5"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -13,13 +13,13 @@ if ! [ ${DEPLOYMENT_TARGET} == "$(macos_version)" ]; then
|
||||||
SDK_SHA1=dd228a335194e3392f1904ce49aff1b1da26ca62
|
SDK_SHA1=dd228a335194e3392f1904ce49aff1b1da26ca62
|
||||||
fi
|
fi
|
||||||
|
|
||||||
OPENSSL_VERSION=1.1.1f
|
OPENSSL_VERSION=1.1.1g
|
||||||
OPENSSL_URL=https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
|
OPENSSL_URL=https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
|
||||||
OPENSSL_SHA1=238e001ea1fbf19ede43e36209c37c1a636bb51f
|
OPENSSL_SHA1=b213a293f2127ec3e323fb3cfc0c9807664fd997
|
||||||
|
|
||||||
PYTHON_VERSION=3.7.6
|
PYTHON_VERSION=3.7.7
|
||||||
PYTHON_URL=https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz
|
PYTHON_URL=https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz
|
||||||
PYTHON_SHA1=4642680fbf9a9a5382597dc0e9faa058fdfd94e2
|
PYTHON_SHA1=8e9968663a214aea29659ba9dfa959e8a7d82b39
|
||||||
|
|
||||||
#
|
#
|
||||||
# Install prerequisites.
|
# Install prerequisites.
|
||||||
|
|
Loading…
Reference in New Issue