From bc9cfc33c4ece3342474ffbd79c62bb161c4aa0b Mon Sep 17 00:00:00 2001 From: -LAN- Date: Thu, 27 Nov 2025 21:13:21 +0800 Subject: [PATCH] Modify quick-start instructions for Docker setup (#555) Updated the steps for starting Docker containers to include directory ownership adjustment. --- en/self-host/quick-start/docker-compose.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/en/self-host/quick-start/docker-compose.mdx b/en/self-host/quick-start/docker-compose.mdx index f998a30d..ee0af3ac 100644 --- a/en/self-host/quick-start/docker-compose.mdx +++ b/en/self-host/quick-start/docker-compose.mdx @@ -60,7 +60,12 @@ git clone --branch "$(curl -s https://api.github.com/repos/langgenius/dify/relea ```bash cp .env.example .env ``` -3. Start the Docker containers +3. Update directory ownership on the host + + ```bash + sudo chown -R 1001:1001 ./volumes/app/storage + ``` +4. Start the Docker containers Choose the appropriate command to start the containers based on the Docker Compose version on your system. You can use the `$ docker compose version` command to check the version, and refer to the [Docker documentation](https://docs.docker.com/compose/install/) for more information: