Skip to content

Commit c40b153

Browse files
authored
Update minimum docker compose requirement (#3078)
* Update minimum docker compose requirement docker compose down <service> is now required. * Update docker compose version to new minimum in CI config.
1 parent 0dabb5a commit c40b153

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ jobs:
8383
fail-fast: false
8484
matrix:
8585
customizations: ["disabled", "enabled"]
86-
compose_version: ["v2.0.1", "v2.26.0"]
86+
compose_version: ["v2.19.0", "v2.26.0"]
8787
include:
88-
- compose_version: "v2.0.1"
88+
- compose_version: "v2.19.0"
8989
compose_path: "/usr/local/lib/docker/cli-plugins"
9090
- compose_version: "v2.26.0"
9191
compose_path: "/usr/local/lib/docker/cli-plugins"
@@ -134,7 +134,7 @@ jobs:
134134

135135
- name: Integration Test
136136
run: |
137-
if [ "${{ matrix.compose_version }}" = "v2.0.1" ]; then
137+
if [ "${{ matrix.compose_version }}" = "v2.19.0" ]; then
138138
pytest --reruns 3 --cov --junitxml=junit.xml _integration-test/ --customizations=${{ matrix.customizations }}
139139
else
140140
pytest --cov --junitxml=junit.xml _integration-test/ --customizations=${{ matrix.customizations }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Official bootstrap for running your own [Sentry](https://sentry.io/) with [Docke
55
## Requirements
66

77
* Docker 19.03.6+
8-
* Compose 2.0.1+
8+
* Compose 2.19.0+
99
* 4 CPU Cores
1010
* 16 GB RAM
1111
* 20 GB Free Disk Space

install/_min-requirements.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Don't forget to update the README and othes docs when you change these!
22
MIN_DOCKER_VERSION='19.03.6'
3-
MIN_COMPOSE_VERSION='2.0.1'
3+
MIN_COMPOSE_VERSION='2.19.0'
44
MIN_RAM_HARD=3800 # MB
55
MIN_RAM_SOFT=7800 # MB
66
MIN_CPU_HARD=2

0 commit comments

Comments
 (0)