From 86f81c4db364a8f4bf2a69eff8b1118862295274 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 16 Feb 2024 11:02:24 -0500 Subject: [PATCH] Mention Docker Compose in the collab docs (#7908) This PR adds a note about using Docker Compose to run the `collab` dependencies. Release Notes: - N/A --- docs/src/developing_zed__building_zed.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/src/developing_zed__building_zed.md b/docs/src/developing_zed__building_zed.md index e04e01029ad3f2ba502f939a74c62433f0b0fbcc..6eb93ff07101b724cabc76692ef859f8fb6bd84e 100644 --- a/docs/src/developing_zed__building_zed.md +++ b/docs/src/developing_zed__building_zed.md @@ -44,6 +44,12 @@ If you are developing collaborative features of Zed, you'll need to install the brew install livekit foreman ``` +Alternatively, if you have [Docker](https://www.docker.com/) installed you can bring up all the `collab` dependencies using Docker Compose: + +```sh +docker compose up -d +``` + ## Building Zed from Source Once you have the dependencies installed, you can build Zed using [Cargo](https://doc.rust-lang.org/cargo/).