File tree Expand file tree Collapse file tree 5 files changed +4
-10
lines changed Expand file tree Collapse file tree 5 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 35
35
label : Docker Compose Version
36
36
placeholder : 2.6.0 ← should look like this (docker compose version)
37
37
description : |
38
- What version of docker-compose are you using to run self-hosted?
39
- You need to use docker-compose --version if you are running < v2.0.0.
38
+ What version of docker compose are you using to run self-hosted?
40
39
validations :
41
40
required : true
42
41
- type : textarea
Original file line number Diff line number Diff line change 44
44
fail-fast : false
45
45
matrix :
46
46
include :
47
- # Disabled due to https://github.com/getsentry/self-hosted/issues/1415
48
- # - compose_version: "1.28.0"
49
- # compose_path: "/usr/local/bin"
50
- # - compose_version: "1.29.2"
51
- # compose_path: "/usr/local/bin"
52
47
- compose_version : " v2.0.1"
53
48
compose_path : " /usr/local/lib/docker/cli-plugins"
54
49
- compose_version : " v2.7.0"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Official bootstrap for running your own [Sentry](https://sentry.io/) with [Docke
5
5
## Requirements
6
6
7
7
* Docker 19.03.6+
8
- * Compose 1.28.0 +
8
+ * Compose 2.0.1 +
9
9
* 4 CPU Cores
10
10
* 8 GB RAM
11
11
* 20 GB Free Disk Space
Original file line number Diff line number Diff line change 1
1
# Don't forget to update the README and othes docs when you change these!
2
2
MIN_DOCKER_VERSION=' 19.03.6'
3
- MIN_COMPOSE_VERSION=' 1.28.0 '
3
+ MIN_COMPOSE_VERSION=' 2.0.1 '
4
4
MIN_RAM_HARD=3800 # MB
5
5
MIN_RAM_SOFT=7800 # MB
6
6
MIN_CPU_HARD=2
Original file line number Diff line number Diff line change 8
8
9
9
echo " ${_group} Initializing Docker Compose ..."
10
10
11
- # Some environments still use `docker-compose` even for Docker Compose v2.
11
+ # To support users that are symlinking to docker-compose
12
12
dc_base=" $( docker compose version & > /dev/null && echo ' docker compose' || echo ' docker-compose' ) "
13
13
if [[ " $( basename $0 ) " = " install.sh" ]]; then
14
14
dc=" $dc_base --ansi never --env-file ${_ENV} "
You can’t perform that action at this time.
0 commit comments