Skip to content

Commit

Permalink
build(docker): Bump min Docker & Compose versions (getsentry#676)
Browse files Browse the repository at this point in the history
We need `docker-compose ps -a` for CI so we were already using 1.24.1, this aligns the rest with that.

For Docker, there are a bunch of network-related fixes in 19.03.12 and prior (DNS fallback and IPv6 advertising) that we'd like to have to see if they are going to fix some reported connectivity issues w/ onpremise.
  • Loading branch information
BYK authored Sep 15, 2020
1 parent 5631d45 commit f8a2e48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
DOCKER_COMPOSE_VERSION: 1.24.1
jobs:
test:
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
name: "test"
steps:
- name: Pin docker-compose
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Official bootstrap for running your own [Sentry](https://sentry.io/) with [Docke

## Requirements

* Docker 17.05.0+
* Compose 1.23.0+
* Docker 19.03.12+
* Compose 1.24.1+

## Minimum Hardware Requirements:

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dcr="$dc run --rm"
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.23.0'
MIN_DOCKER_VERSION='19.03.12'
MIN_COMPOSE_VERSION='1.24.1'
MIN_RAM=2400 # MB

SENTRY_CONFIG_PY='sentry/sentry.conf.py'
Expand Down

0 comments on commit f8a2e48

Please sign in to comment.