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