From b8405fca760e183c81a5cdfe5429a76a4328cc2b Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Tue, 21 Jan 2020 22:56:04 +0300 Subject: [PATCH] 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. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0b789a5..01d8a34 100755 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ log_file="sentry_install_log-`date +'%Y-%m-%d_%H-%M-%S'`.txt" exec &> >(tee -a "$log_file") MIN_DOCKER_VERSION='17.05.0' -MIN_COMPOSE_VERSION='1.19.0' +MIN_COMPOSE_VERSION='1.23.0' MIN_RAM=2400 # MB SENTRY_CONFIG_PY='sentry/sentry.conf.py'