mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
* docs: reorganize documentation structure into logical categories Restructure documentation into organized directories for better navigation: - getting-started/: Quick start guides for new users - setup/: Setup and configuration guides - production/: Production deployment guides (backup, TLS, multi-tenancy) - operations/: Site operations and management - development/: Development workflow guides - migration/: Migration guides - troubleshooting/: Troubleshooting guides - reference/: Reference documentation (container setup, build configs) Rename files for consistency: - Use kebab-case naming convention throughout - Remove numbered prefixes from container-setup files - Use descriptive names (backup-strategy, tls-ssl-setup, etc.) Update all internal cross-references to reflect new file locations. Update README.md with organized documentation structure. Fix image paths in development.md to use correct relative paths. * docs: add numeric prefixes to directories and files for navigation order Add numeric prefixes (01-08) to documentation directories to indicate reading order and flow for first-time users: - 01-getting-started: Quick start guides - 02-setup: Setup and configuration - 03-production: Production deployment - 04-operations: Site operations - 05-development: Development guides - 06-migration: Migration guides - 07-troubleshooting: Troubleshooting - 08-reference: Reference documentation Add numeric prefixes to files within directories to guide readers through documentation in a logical sequence. Update all cross-references throughout documentation to use new numbered paths. Update README.md to reflect the new structure. * docs: move container-setup to 02-setup and integrate setup-options content Move container-setup directory from 08-reference/ to 02-setup/ to follow PR feedback. The container-setup documentation provides a more linear and coherent flow compared to the previous unstructured setup files. Changes: - Move container-setup/ from docs/08-reference/ to docs/02-setup/ - Integrate content from setup-options.md into structured flow: - Create new 06-setup-examples.md with practical deployment scenarios - Enhance 03-start-setup.md with site creation details from setup-options - Remove redundant 01-setup-options.md (content now integrated) - Rename 02-single-server-example.md to 07-single-server-example.md - Update all cross-references throughout documentation: - Update README.md with new structure under Setup section - Fix links in site-operations.md and migration docs - Add navigation links between container-setup files and examples - Maintain container-setup's linear flow: overview → build → start → env → overrides - Add practical examples document (06-setup-examples.md) that follows the container-setup guide Result: Documentation now follows a clear progression from conceptual overview through practical examples, with all setup information properly organized under 02-setup/. * docs: remove container-setup subfolder and flatten structure Move all files from docs/02-setup/container-setup/ directly into docs/02-setup/ to eliminate unnecessary subfolder. Files are already numbered sequentially, so they work perfectly at the same level. Changes: - Move all files from container-setup/ subfolder to 02-setup/ root - Remove container-setup/ subfolder - Update all cross-references: - Update README.md paths (remove container-setup/ from all links) - Fix references in site-operations.md - Fix references in migration docs - Update internal references in 06-setup-examples.md - Fix relative path references in 01-overview.md, 02-build-setup.md, 03-start-setup.md Result: Cleaner, flatter structure with all numbered setup files at the same level, making navigation more straightforward. * fix: Pre-commit failure is fixed --------- Co-authored-by: adithya <adithya.a@bayesian.in>
294 lines
11 KiB
Markdown
294 lines
11 KiB
Markdown
# Single Server Example
|
|
|
|
This guide demonstrates setting up multiple Frappe/ERPNext benches (projects) on a single server with shared infrastructure components.
|
|
|
|
In this use case we have a single server with a static IP attached to it. It can be used in scenarios where one powerful VM has multiple benches and applications or one entry level VM with single site. For single bench, single site setup follow only up to the point where first bench and first site is added. If you choose this setup you can only scale vertically. If you need to scale horizontally you'll need to backup the sites and restore them on to cluster setup.
|
|
|
|
We will setup the following:
|
|
|
|
- Install docker and docker compose v2 on linux server.
|
|
- Install traefik service for internal load balancer and letsencrypt.
|
|
- Install MariaDB with containers.
|
|
- Setup project called `erpnext-one` and create sites `one.example.com` and `two.example.com` in the project.
|
|
- Setup project called `erpnext-two` and create sites `three.example.com` and `four.example.com` in the project.
|
|
|
|
Explanation:
|
|
|
|
Single instance of **Traefik** will be installed and act as internal loadbalancer for multiple benches and sites hosted on the server. It can also load balance other applications along with frappe benches, e.g. wordpress, metabase, etc. We only expose the ports `80` and `443` once with this instance of traefik. Traefik will also take care of letsencrypt automation for all sites installed on the server. _Why choose Traefik over Nginx Proxy Manager?_ Traefik doesn't need additional DB service and can store certificates in a json file in a volume.
|
|
|
|
Single instance of **MariaDB** will be installed and act as database service for all the benches/projects installed on the server.
|
|
|
|
Each instance of ERPNext project (bench) will have its own redis, socketio, gunicorn, nginx, workers and scheduler. It will connect to internal MariaDB by connecting to MariaDB network. It will expose sites to public through Traefik by connecting to Traefik network.
|
|
|
|
### Install Docker
|
|
|
|
Easiest way to install docker is to use the [convenience script](https://docs.docker.com/engine/install/ubuntu/#install-using-the-convenience-script).
|
|
|
|
```shell
|
|
curl -fsSL https://get.docker.com | bash
|
|
```
|
|
|
|
Note: The documentation assumes Ubuntu LTS server is used. Use any distribution as long as the docker convenience script works. If the convenience script doesn't work, you'll need to install docker manually.
|
|
|
|
### Install Compose V2
|
|
|
|
Refer [original documentation](https://docs.docker.com/compose/cli-command/#install-on-linux) for updated version.
|
|
|
|
```shell
|
|
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
|
|
mkdir -p $DOCKER_CONFIG/cli-plugins
|
|
curl -SL https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
|
|
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
|
|
```
|
|
|
|
### Prepare
|
|
|
|
Clone `frappe_docker` repo for the needed YAMLs and change the current working directory of your shell to the cloned repo.
|
|
|
|
```shell
|
|
git clone https://github.com/frappe/frappe_docker
|
|
cd frappe_docker
|
|
```
|
|
|
|
Create configuration and resources directory
|
|
|
|
```shell
|
|
mkdir ~/gitops
|
|
```
|
|
|
|
The `~/gitops` directory will store all the resources that we use for setup. We will also keep the environment files in this directory as there will be multiple projects with different environment variables. You can create a private repo for this directory and track the changes there.
|
|
|
|
### Install Traefik
|
|
|
|
Basic Traefik setup using docker compose.
|
|
|
|
Create a file called `traefik.env` in `~/gitops`
|
|
|
|
```shell
|
|
echo 'TRAEFIK_DOMAIN=traefik.example.com' > ~/gitops/traefik.env
|
|
echo 'EMAIL=admin@example.com' >> ~/gitops/traefik.env
|
|
echo "HASHED_PASSWORD='$(openssl passwd -apr1 changeit)'" >> ~/gitops/traefik.env
|
|
```
|
|
|
|
Note:
|
|
|
|
- Change the domain from `traefik.example.com` to the one used in production. DNS entry needs to point to the Server IP.
|
|
- Change the letsencrypt notification email from `admin@example.com` to correct email.
|
|
- Change the password from `changeit` to more secure.
|
|
|
|
env file generated at location `~/gitops/traefik.env` will look like following:
|
|
|
|
```env
|
|
TRAEFIK_DOMAIN=traefik.example.com
|
|
EMAIL=admin@example.com
|
|
HASHED_PASSWORD=$apr1$K.4gp7RT$tj9R2jHh0D4Gb5o5fIAzm/
|
|
```
|
|
|
|
If Container does not deploy put the HASHED_PASSWORD in ''.
|
|
|
|
Deploy the traefik container with letsencrypt SSL
|
|
|
|
```shell
|
|
docker compose --project-name traefik \
|
|
--env-file ~/gitops/traefik.env \
|
|
-f overrides/compose.traefik.yaml \
|
|
-f overrides/compose.traefik-ssl.yaml up -d
|
|
```
|
|
|
|
This will make the traefik dashboard available on `traefik.example.com` and all certificates will reside in the Docker volume `cert-data`.
|
|
|
|
For LAN setup deploy the traefik container without overriding `overrides/compose.traefik-ssl.yaml`.
|
|
|
|
### Install MariaDB
|
|
|
|
Basic MariaDB setup using docker compose.
|
|
|
|
Create a file called `mariadb.env` in `~/gitops`
|
|
|
|
```shell
|
|
echo "DB_PASSWORD=changeit" > ~/gitops/mariadb.env
|
|
```
|
|
|
|
Note:
|
|
|
|
- Change the password from `changeit` to more secure.
|
|
|
|
env file generated at location `~/gitops/mariadb.env` will look like following:
|
|
|
|
```env
|
|
DB_PASSWORD=changeit
|
|
```
|
|
|
|
Note: Change the password from `changeit` to more secure one.
|
|
|
|
Deploy the mariadb container
|
|
|
|
```shell
|
|
docker compose --project-name mariadb --env-file ~/gitops/mariadb.env -f overrides/compose.mariadb-shared.yaml up -d
|
|
```
|
|
|
|
This will make `mariadb-database` service available under `mariadb-network`. Data will reside in `/data/mariadb`.
|
|
|
|
### Install ERPNext
|
|
|
|
#### Create first bench
|
|
|
|
Create first bench called `erpnext-one` with `one.example.com` and `two.example.com`
|
|
|
|
Create a file called `erpnext-one.env` in `~/gitops`
|
|
|
|
```shell
|
|
cp example.env ~/gitops/erpnext-one.env
|
|
sed -i 's/DB_PASSWORD=123/DB_PASSWORD=changeit/g' ~/gitops/erpnext-one.env
|
|
sed -i 's/DB_HOST=/DB_HOST=mariadb-database/g' ~/gitops/erpnext-one.env
|
|
sed -i 's/DB_PORT=/DB_PORT=3306/g' ~/gitops/erpnext-one.env
|
|
sed -i 's/SITES=`erp.example.com`/SITES=\`one.example.com\`,\`two.example.com\`/g' ~/gitops/erpnext-one.env
|
|
echo 'ROUTER=erpnext-one' >> ~/gitops/erpnext-one.env
|
|
echo "BENCH_NETWORK=erpnext-one" >> ~/gitops/erpnext-one.env
|
|
```
|
|
|
|
Note:
|
|
|
|
- Change the password from `changeit` to the one set for MariaDB compose in the previous step.
|
|
|
|
env file is generated at location `~/gitops/erpnext-one.env`.
|
|
|
|
Create a yaml file called `erpnext-one.yaml` in `~/gitops` directory:
|
|
|
|
```shell
|
|
docker compose --project-name erpnext-one \
|
|
--env-file ~/gitops/erpnext-one.env \
|
|
-f compose.yaml \
|
|
-f overrides/compose.redis.yaml \
|
|
-f overrides/compose.multi-bench.yaml \
|
|
-f overrides/compose.multi-bench-ssl.yaml config > ~/gitops/erpnext-one.yaml
|
|
```
|
|
|
|
For LAN setup do not override `compose.multi-bench-ssl.yaml`.
|
|
|
|
Use the above command after any changes are made to `erpnext-one.env` file to regenerate `~/gitops/erpnext-one.yaml`. e.g. after changing version to migrate the bench.
|
|
|
|
Deploy `erpnext-one` containers:
|
|
|
|
```shell
|
|
docker compose --project-name erpnext-one -f ~/gitops/erpnext-one.yaml up -d
|
|
```
|
|
|
|
Create sites `one.example.com` and `two.example.com`:
|
|
|
|
```shell
|
|
# one.example.com
|
|
docker compose --project-name erpnext-one exec backend \
|
|
bench new-site --mariadb-user-host-login-scope=% --db-root-password changeit --install-app erpnext --admin-password changeit one.example.com
|
|
```
|
|
|
|
You can stop here and have a single bench single site setup complete. Continue to add one more site to the current bench.
|
|
|
|
```shell
|
|
# two.example.com
|
|
docker compose --project-name erpnext-one exec backend \
|
|
bench new-site --mariadb-user-host-login-scope=% --db-root-password changeit --install-app erpnext --admin-password changeit two.example.com
|
|
```
|
|
|
|
#### Create second bench
|
|
|
|
Setting up additional bench is optional. Continue only if you need multi bench setup.
|
|
|
|
Create second bench called `erpnext-two` with `three.example.com` and `four.example.com`
|
|
|
|
Create a file called `erpnext-two.env` in `~/gitops`
|
|
|
|
```shell
|
|
curl -sL https://raw.githubusercontent.com/frappe/frappe_docker/main/example.env -o ~/gitops/erpnext-two.env
|
|
sed -i 's/DB_PASSWORD=123/DB_PASSWORD=changeit/g' ~/gitops/erpnext-two.env
|
|
sed -i 's/DB_HOST=/DB_HOST=mariadb-database/g' ~/gitops/erpnext-two.env
|
|
sed -i 's/DB_PORT=/DB_PORT=3306/g' ~/gitops/erpnext-two.env
|
|
echo "ROUTER=erpnext-two" >> ~/gitops/erpnext-two.env
|
|
echo "SITES=\`three.example.com\`,\`four.example.com\`" >> ~/gitops/erpnext-two.env
|
|
echo "BENCH_NETWORK=erpnext-two" >> ~/gitops/erpnext-two.env
|
|
```
|
|
|
|
Note:
|
|
|
|
- Change the password from `changeit` to the one set for MariaDB compose in the previous step.
|
|
|
|
env file is generated at location `~/gitops/erpnext-two.env`.
|
|
|
|
Create a yaml file called `erpnext-two.yaml` in `~/gitops` directory:
|
|
|
|
```shell
|
|
docker compose --project-name erpnext-two \
|
|
--env-file ~/gitops/erpnext-two.env \
|
|
-f compose.yaml \
|
|
-f overrides/compose.redis.yaml \
|
|
-f overrides/compose.multi-bench.yaml \
|
|
-f overrides/compose.multi-bench-ssl.yaml config > ~/gitops/erpnext-two.yaml
|
|
```
|
|
|
|
Use the above command after any changes are made to `erpnext-two.env` file to regenerate `~/gitops/erpnext-two.yaml`. e.g. after changing version to migrate the bench.
|
|
|
|
Deploy `erpnext-two` containers:
|
|
|
|
```shell
|
|
docker compose --project-name erpnext-two -f ~/gitops/erpnext-two.yaml up -d
|
|
```
|
|
|
|
Create sites `three.example.com` and `four.example.com`:
|
|
|
|
```shell
|
|
# three.example.com
|
|
docker compose --project-name erpnext-two exec backend \
|
|
bench new-site --mariadb-user-host-login-scope=% --db-root-password changeit --install-app erpnext --admin-password changeit three.example.com
|
|
# four.example.com
|
|
docker compose --project-name erpnext-two exec backend \
|
|
bench new-site --mariadb-user-host-login-scope=% --db-root-password changeit --install-app erpnext --admin-password changeit four.example.com
|
|
```
|
|
|
|
#### Create custom domain to existing site
|
|
|
|
In case you need to point custom domain to existing site follow these steps.
|
|
Also useful if custom domain is required for LAN based access.
|
|
|
|
Create environment file
|
|
|
|
```shell
|
|
echo "ROUTER=custom-one-example" > ~/gitops/custom-one-example.env
|
|
echo "SITES=\`custom-one.example.com\`" >> ~/gitops/custom-one-example.env
|
|
echo "BASE_SITE=one.example.com" >> ~/gitops/custom-one-example.env
|
|
echo "BENCH_NETWORK=erpnext-one" >> ~/gitops/custom-one-example.env
|
|
```
|
|
|
|
Note:
|
|
|
|
- Change the file name from `custom-one-example.env` to a logical one.
|
|
- Change `ROUTER` variable from `custom-one.example.com` to the one being added.
|
|
- Change `SITES` variable from `custom-one.example.com` to the one being added. You can add multiple sites quoted in backtick (`) and separated by commas.
|
|
- Change `BASE_SITE` variable from `one.example.com` to the one which is being pointed to.
|
|
- Change `BENCH_NETWORK` variable from `erpnext-one` to the one which was created with the bench.
|
|
|
|
env file is generated at location mentioned in command.
|
|
|
|
Generate yaml to reverse proxy:
|
|
|
|
```shell
|
|
docker compose --project-name custom-one-example \
|
|
--env-file ~/gitops/custom-one-example.env \
|
|
-f overrides/compose.custom-domain.yaml \
|
|
-f overrides/compose.custom-domain-ssl.yaml config > ~/gitops/custom-one-example.yaml
|
|
```
|
|
|
|
For LAN setup do not override `compose.custom-domain-ssl.yaml`.
|
|
|
|
Deploy `erpnext-two` containers:
|
|
|
|
```shell
|
|
docker compose --project-name custom-one-example -f ~/gitops/custom-one-example.yaml up -d
|
|
```
|
|
|
|
### Site operations
|
|
|
|
Refer: [site operations](../04-operations/01-site-operations.md)
|
|
|
|
---
|
|
|
|
**Back:** [Setup Examples →](06-setup-examples.md)
|