Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add README note on Docker Compose 2.0 config syntax compatibility . #183

Merged
merged 1 commit into from
Oct 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,23 @@ as database import/export and reindexing.
- Docker-CE 19.x+ (*If using Docker Desktop for Windows, any stable release
*after* 2.2.0.4, or use a 2.2.0.4 with a [patch][Docker for Windows Patch] due
to a [bug][Docker for Windows Bug]*)
- Docker-compose version 1.25.x+
- Docker-compose version 1.25.x+.* Docker is now rolling out a 2.0.x branch, with incompatible config file syntax.
- Drush 9.0+
- Git 2.0+
- GNU Make 4.0+

* As of August, 2021, Docker Desktop is now shipping with docker-compose 2.0 which has incompatible config file syntax. Until this is addressed, run

```bash
docker-compose disable-v2
```

before running any of the make commands below.


See release notes at https://docs.docker.com/compose/cli-command/.


## Getting Started

To get started with a **demo** environment, run:
Expand Down