mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-13 00:36:26 +00:00
29 lines
625 B
YAML
29 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:
|