2
0

build(compose): Bump required compose version (#353)

With #343, we added the `--parallel` flag which only got introduced in `docker-compose` `1.23.0` (source https://medium.com/schkn/parallelize-your-docker-compose-build-8ac653e3e596 as Docker docs themselves don't really mention these) so bumping the minimum required version.

Fixes #351.
This commit is contained in:
Burak Yigit Kaya 2020-01-21 22:56:04 +03:00 committed by GitHub
parent dffd59723c
commit b8405fca76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ log_file="sentry_install_log-`date +'%Y-%m-%d_%H-%M-%S'`.txt"
exec &> >(tee -a "$log_file") exec &> >(tee -a "$log_file")
MIN_DOCKER_VERSION='17.05.0' MIN_DOCKER_VERSION='17.05.0'
MIN_COMPOSE_VERSION='1.19.0' MIN_COMPOSE_VERSION='1.23.0'
MIN_RAM=2400 # MB MIN_RAM=2400 # MB
SENTRY_CONFIG_PY='sentry/sentry.conf.py' SENTRY_CONFIG_PY='sentry/sentry.conf.py'