mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 14:45:10 +00:00
28 lines
625 B
YAML
28 lines
625 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
backend:
|
|
image: frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
volumes:
|
|
- assets:/home/frappe/frappe-bench/sites/assets
|
|
|
|
frontend:
|
|
image: frappe/erpnext-nginx:${ERPNEXT_VERSION}
|
|
volumes:
|
|
- assets:/usr/share/nginx/html/assets
|
|
|
|
queue-short:
|
|
image: frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
|
|
queue-default:
|
|
image: frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
|
|
queue-long:
|
|
image: frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
|
|
scheduler:
|
|
image: frappe/erpnext-worker:${ERPNEXT_VERSION}
|
|
|
|
# ERPNext requires local assets access (Frappe does not)
|
|
volumes:
|
|
assets:
|