removed old file and replaced it under development

This commit is contained in:
Harshith Ashok 2026-05-19 00:22:22 +05:30
parent 5097115d08
commit 6e1117bbbc
2 changed files with 4 additions and 2 deletions

View file

@ -65,7 +65,6 @@ The full `frappe_docker` documentation is available in [`docs/`](docs/) and publ
- **Running in production:** [Production docs](docs/03-production/) - **Running in production:** [Production docs](docs/03-production/)
- **Operating a deployment:** [Operations docs](docs/04-operations/) - **Operating a deployment:** [Operations docs](docs/04-operations/)
- **Development workflows:** [Development](docs/05-development/01-development.md) - **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) - **FAQ:** [Frequently Asked Questions](https://github.com/frappe/frappe_docker/wiki/Frequently-Asked-Questions)
## Prerequisites ## Prerequisites

View file

@ -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. 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 ## 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. > 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`
--- ---