mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Add custom apps config and assets volume override
- apps.json: custom app list (erpnext, crm, telephony, helpdesk, payments, insights, lms) - overrides/compose.assets-volume.yaml: shared assets volume for frontend/backend sync Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
986a8f15f1
commit
7f5b0a2c47
2 changed files with 36 additions and 0 deletions
9
apps.json
Normal file
9
apps.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[
|
||||
{ "url": "https://github.com/frappe/erpnext", "branch": "version-16" },
|
||||
{ "url": "https://github.com/frappe/crm", "branch": "main" },
|
||||
{ "url": "https://github.com/frappe/telephony", "branch": "develop" },
|
||||
{ "url": "https://github.com/frappe/helpdesk", "branch": "main" },
|
||||
{ "url": "https://github.com/frappe/payments", "branch": "develop" },
|
||||
{ "url": "https://github.com/frappe/insights", "branch": "main" },
|
||||
{ "url": "https://github.com/frappe/lms", "branch": "main" }
|
||||
]
|
||||
27
overrides/compose.assets-volume.yaml
Normal file
27
overrides/compose.assets-volume.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
services:
|
||||
backend:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
frontend:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
websocket:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
scheduler:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
queue-short:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
queue-long:
|
||||
volumes:
|
||||
- assets:/home/frappe/frappe-bench/sites/assets
|
||||
|
||||
volumes:
|
||||
assets:
|
||||
Loading…
Reference in a new issue