From c234f2a08706e83949d193d721fd3e4f05457bb7 Mon Sep 17 00:00:00 2001 From: Nathanael Demacon Date: Fri, 2 Jun 2023 08:57:15 +0200 Subject: [PATCH] docs: fix docker compose quick start (#1173) * docs: add missing .env.example fetch in docker compose quick start * docs: clone the repository instead of fetching particular files --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 31cf8a54d..cf0af7fe2 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,11 @@ The easiest way to get started with Plane is by creating a [Plane Cloud](https:/ ### Docker Compose Setup -- Download the docker-compose.yml and setup.sh file +- Clone the repository ```bash -curl https://raw.githubusercontent.com/makeplane/plane/develop/docker-compose-hub.yml --output docker-compose.yml -curl https://raw.githubusercontent.com/makeplane/plane/develop/setup.sh --output setup.sh +git clone https://github.com/makeplane/plane +cd plane chmod +x setup.sh ```