Skip to content

Commit

Permalink
Docs - change docker and docker-compose req version (#1116)
Browse files Browse the repository at this point in the history
* Docs - change docker and docker-compose req version
* Change docker-compose version and add comments to version.go
  • Loading branch information
lukaszuznanski authored and rfay committed Sep 24, 2018
1 parent 51ccfc8 commit 7dec1a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Expand Up @@ -6,8 +6,8 @@

## System Requirements

- [Docker](https://www.docker.com/community-edition) version 18.03 or higher. Linux users make sure you do the [post-install steps](https://docs.docker.com/install/linux/linux-postinstall/#manage-docker-as-a-non-root-user)
- docker-compose 1.18.0 and higher (bundled with Docker in Docker for Mac and Docker for Windows)
- [Docker](https://www.docker.com/community-edition) version 18.06 or higher. Linux users make sure you do the [post-install steps](https://docs.docker.com/install/linux/linux-postinstall/#manage-docker-as-a-non-root-user)
- docker-compose 1.20.0 and higher (bundled with Docker in Docker for Mac and Docker for Windows)
- OS Support
- macOS Sierra and higher (macOS 10.12 and higher but it should runs anywhere docker-ce runs)
- Linux: Most recent Linux distributions which can run Docker-ce are fine. This includes at least Ubuntu 14.04+, Debian Jessie+, Fedora 25+. Make sure to follow the docker-ce [post-install steps](https://docs.docker.com/install/linux/linux-postinstall/#manage-docker-as-a-non-root-user)
Expand Down
4 changes: 3 additions & 1 deletion pkg/version/version.go
Expand Up @@ -11,10 +11,12 @@ var DdevVersion = "v0.0.0-overridden-by-make" // Note that this is overridden by
// DockerVersionConstraint is the current minimum version of docker required for ddev.
// See https://godoc.org/github.com/Masterminds/semver#hdr-Checking_Version_Constraints
// for examples defining version constraints.
// REMEMBER TO CHANGE docs/index.md if you touch this!
var DockerVersionConstraint = ">= 18.06.0-ce"

// DockerComposeVersionConstraint is the current minimum version of docker-compose required for ddev.
var DockerComposeVersionConstraint = ">= 1.18.0-alpha1"
// REMEMBER TO CHANGE docs/index.md if you touch this!
var DockerComposeVersionConstraint = ">= 1.20.0"

// DockerComposeFileFormatVersion is the compose version to be used
var DockerComposeFileFormatVersion = "3.6"
Expand Down

0 comments on commit 7dec1a2

Please sign in to comment.