From 6e1117bbbc2cdc900df4a855321f67e96bd712cb Mon Sep 17 00:00:00 2001 From: Harshith Ashok Date: Tue, 19 May 2026 00:22:22 +0530 Subject: [PATCH] removed old file and replaced it under development --- README.md | 1 - .../01-setup.md => 05-development/04-alternate-setup.md} | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) rename docs/{10-development/01-setup.md => 05-development/04-alternate-setup.md} (95%) diff --git a/README.md b/README.md index ac8479a4..769efef7 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,6 @@ The full `frappe_docker` documentation is available in [`docs/`](docs/) and publ - **Running in production:** [Production docs](docs/03-production/) - **Operating a deployment:** [Operations docs](docs/04-operations/) - **Development workflows:** [Development](docs/05-development/01-development.md) -- **Docker Container Setup for Development** [Docker Setup](docs/10-development/01-setup.md) - **FAQ:** [Frequently Asked Questions](https://github.com/frappe/frappe_docker/wiki/Frequently-Asked-Questions) ## Prerequisites diff --git a/docs/10-development/01-setup.md b/docs/05-development/04-alternate-setup.md similarity index 95% rename from docs/10-development/01-setup.md rename to docs/05-development/04-alternate-setup.md index 567cb558..29de8669 100644 --- a/docs/10-development/01-setup.md +++ b/docs/05-development/04-alternate-setup.md @@ -6,6 +6,9 @@ title: Docker Development Setup A complete guide for setting up a Frappe development environment on x86 and ARM based computers running UNIX based OSes by running containers directly and working inside them via the terminal. No VS Code Dev Containers extension needed. +> [!IMPORTANT] +> Devcontainers are the intended development setup for Frappe Framework but in case you don't want to use that method follow these instructions to use the CLI directly instead + --- ## Prerequisites @@ -93,7 +96,7 @@ services: ``` > Without this, Docker may pull amd64 images and emulate them via Rosetta — things will work but be noticeably slower. -> Few users did note that the version of mariadb causes an error while creating a new site so in case you do encouter it change the version from `11.8` to `10.8` +> Ensure mariadb version is set to `10.8` since Frappe Framework is not yet tested for the default version `11.8` ---