Bench
CLI to manage Multi-tenant deployments for Frappe apps
- Author: frappe
- Repository: https://github.com/frappe/bench
- GitHub stars: 1713
- Forks: 1354
- License: GPL-3.0
- Category: Developer Tools
- Maintenance: Actively Maintained
- Frappe versions: develop
Install Bench
bench get-app https://github.com/frappe/bench
Tags
- cli
- frappe-bench
- frappe-framework
- setup-bench
Add the Frappe Gems badge to your README
Maintain Bench? Paste this into your README:
[](https://frappegems.com/gems/apps/frappe/bench)
About Bench

## Bench
**CLI to manage Frappe applications**
[](https://www.python.org/downloads/)
[](https://pypi.org/project/frappe-bench)

## Bench
Bench is a command-line utility that helps you to install, update, and manage multiple sites for Frappe applications on [*nix systems](https://en.wikipedia.org/wiki/Unix-like) for development and production.
## Key features
Bench helps you set up and manage your frappe sites with ease. Here are some of the key features:
- Initializing a new bench to work on sites and apps
- Creating a new frappe site
- Creating and installing apps that can be used on the sites
- Managing frappe sites
- Managing site backups
## Installation
A typical bench setup provides two types of environments — Development and Production.
The setup for each of these installations can be achieved in multiple ways:
- [Containerized Installation](#containerized-installation)
- [Manual Installation](https://docs.frappe.io/framework/user/en/tutorial/install-and-setup-bench)
We recommend using Docker Installation to setup a Production Environment. For Development, you may choose either of the two methods to setup an instance.
Otherwise, if you are looking to evaluate Frappe apps without the hassle of managing hosting yourself, you can try them on [Frappe Cloud](https://frappecloud.com/).
### Containerized Installation
A Frappe instance can be setup and replicated easily using [Docker](https://docker.com). The officially supported Docker installation can be used to setup either of both Development and Production environments.
To setup either of the environments, you will need to clone the official docker repository:
```sh
git clone https://github.com/frappe/frappe_docker.git
```
A quick setup guide for both the environments can be found below. For more details, check out the [Frappe Docker Repository](https://github.com/frappe/frappe_docker).
### Easy Install Script
The Easy Install script should get you going with a Frappe setup with minimal manual intervention and effort.
This script uses Docker with the [Frappe Docker Repository](https://github.com/frappe/frappe_docker) and can be used for both Development setup and Production setup.
#### Setup
Download the Easy Install script and execute it:
```sh
wget https://raw.githubusercontent.com/frappe/bench/develop/easy-install.py
python3 easy-install.py deploy --email=user@domain.tld --sitename=subdomain.domain.tld --app=erpnext
```
This script will install docker on your system and will fetch the required containers, setup bench and a default ERPNext instance.
The script will generate MySQL root password and an Administrator password for the Frappe/ERPNext instance, which will then be saved under `$HOME/passwords.txt` of the user used to setup the instance.
It will also generate a new compose file under `$HOME/-compose.yml`.
When the setup is complete, you will be able to access the system at `http://`, wherein you can use the Administrator password to login.
#### Arguments
Here are the arguments for the easy-install script
Build custom images
```txt usage: easy-install.py build [-h] [-n PROJECT] [-i IMAGE] [-q] [-m HTTP_PORT] [-v VERSION] [-a APPS] [-s SITES] [-e EMAIL] [-p] [-r FRAPPE_PATH] [-b FRAPPE_BRANCH] [-j APPS_JSON] [-t TAGS] [-c CONTAINERFILE] [-y PYTHON_VERSION] [-d NODE_VERSION] [-x] [-u] options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name -g, --backup-schedule BACKUP_SCHEDULE Backup schedule cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https -m HTTP_PORT, --http-port HTTP_PORT Http port in case of no-ssl -v VERSION, --version VERSION ERPNext version to install, defaults to latest stable -a APPS, --app APPS list of app(s) to be installed -s SITES, --sitename SITES Site Name(s) for your production bench -e EMAIL, --email EMAIL Add email for the SSL. -p, --push Push the built image to registry -r FRAPPE_PATH, --frappe-path FRAPPE_PATH Frappe Repository to use, default: https://github.com/frappe/frappe -b FRAPPE_BRANCH, --frappe-branch FRAPPE_BRANCH Frappe branch to use, default: version-15 -j APPS_JSON, --apps-json APPS_JSON Path to apps json, default: frappe_docker/development/apps-example.json -t TAGS, --tag TAGS Full Image Name(s), default: custom-apps:latest -c CONTAINERFILE, --containerfile CONTAINERFILE Path to Containerfile: images/layered/Containerfile -y PYTHON_VERSION, --python-version PYTHON_VERSION Python Version, default: 3.11.6 -d NODE_VERSION, --node-version NODE_VERSION NodeJS Version, default: 18.18.2 -x, --deploy Deploy after build -u, --upgrade Upgrade after build ```Deploy using compose
```txt usage: easy-install.py deploy [-h] [-n PROJECT] [-i IMAGE] [-q] [-m HTTP_PORT] [-v VERSION] [-a APPS] [-s SITES] [-e EMAIL] options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name -g, --backup-schedule BACKUP_SCHEDULE Backup schedule cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https -m HTTP_PORT, --http-port HTTP_PORT Http port in case of no-ssl -v VERSION, --version VERSION ERPNext version to install, defaults to latest stable -a APPS, --app APPS list of app(s) to be installed -s SITES, --sitename SITES Site Name(s) for your production bench -e EMAIL, --email EMAIL Add email for the SSL. ```Upgrade existing project
```txt usage: easy-install.py upgrade [-h] [-n PROJECT] [-i IMAGE] [-q] [-m HTTP_PORT] [-v VERSION] options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name -g, --backup-schedule BACKUP_SCHEDULE Backup schedule cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https -m HTTP_PORT, --http-port HTTP_PORT Http port in case of no-ssl -v VERSION, --version VERSION ERPNext or image version to install, defaults to latest stable ```Development setup using compose
```txt usage: easy-install.py develop [-h] [-n PROJECT] options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Compose project name ```Exec into existing project
```txt usage: easy-install.py exec [-h] [-n PROJECT] options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name ```Related Developer Tools apps for Frappe & ERPNext
- Frappe — Low code web framework for real world applications, in Python and Javascript
- Frappe Docker — Docker environment for developing, deploying, and running Frappe applications (ERPNext and custom apps) in production and development
- Builder — Craft beautiful websites effortlessly with an intuitive visual builder and publish them instantly
- Frappe Ui — A set of components and utilities for rapid UI development
- Press — Full service cloud hosting for the Frappe stack - powers Frappe Cloud
- Gameplan — Open Source Discussions Platform for Remote Teams
- Doppio — A Frappe app (CLI) to magically setup single page applications and Vue/React powered desk pages on your custom Frappe apps.
- Studio — Visual App Builder for the Frappe Framework