From 8b05f61538676b774157eb0d622db6983aa42404 Mon Sep 17 00:00:00 2001 From: Adam Johnston <133815042+cbility@users.noreply.github.com> Date: Wed, 22 Jul 2026 14:34:43 +0100 Subject: [PATCH] docs: Modify docker-compose.yml for named volume usage Updated docker-compose.yml example to use named volume for appsmith_stacks. Resolves performance issues with git on Windows --- .../setup/installation-guides/docker/README.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/docs/getting-started/setup/installation-guides/docker/README.mdx b/website/docs/getting-started/setup/installation-guides/docker/README.mdx index 03ee7087e8..5d27828af1 100644 --- a/website/docs/getting-started/setup/installation-guides/docker/README.mdx +++ b/website/docs/getting-started/setup/installation-guides/docker/README.mdx @@ -31,7 +31,6 @@ Follow these steps to install Appsmith: 2. Create a `docker-compose.yml` file with: ```yaml - version: "3" services: appsmith: image: index.docker.io/appsmith/appsmith-ee: @@ -40,8 +39,11 @@ Follow these steps to install Appsmith: - "80:80" - "443:443" volumes: - - ./stacks:/appsmith-stacks + - appsmith_stacks:/appsmith-stacks restart: unless-stopped + volumes: + appsmith_stacks: + external: true ``` :::tip Pin the image to a release tag