mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-24 08:45:10 +00:00
Update Docker configurations and Helpdesk application branch for compatibility
- Changed the Helpdesk application branch in `apps.json` and `Dockerfile` to `v1.14.0`, ensuring compatibility with Frappe v15. - Removed version declaration from `docker-compose.prod.yml` and `docker-compose.yml` for cleaner configuration.
This commit is contained in:
parent
7fa85a277f
commit
c1c9b695aa
4 changed files with 3 additions and 7 deletions
|
|
@ -140,8 +140,8 @@ RUN cd /home/frappe/frappe-bench && \
|
|||
find apps/crm -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true
|
||||
|
||||
RUN cd /home/frappe/frappe-bench && \
|
||||
# Helpdesk - latest (Customer Support)
|
||||
bench get-app helpdesk https://github.com/frappe/helpdesk && \
|
||||
# Helpdesk - v1.14.0 tag (last Frappe v15 compatible version)
|
||||
bench get-app --branch=v1.14.0 helpdesk https://github.com/frappe/helpdesk && \
|
||||
find apps/helpdesk -name "*.pyc" -delete && \
|
||||
find apps/helpdesk -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
},
|
||||
{
|
||||
"url": "https://github.com/frappe/helpdesk.git",
|
||||
"branch": "main"
|
||||
"branch": "v1.14.0"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/frappe/lms.git",
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
# Production-optimized Docker Compose for Dokploy
|
||||
# Bu dosya production deployment için optimize edilmiş ayarları içerir
|
||||
|
||||
version: '3.8'
|
||||
|
||||
x-customizable-image: &customizable_image
|
||||
image: ghcr.io/ubden/frappe_docker/erpnext-complete:latest
|
||||
pull_policy: always
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
version: '3.8'
|
||||
|
||||
x-customizable-image: &customizable_image
|
||||
image: ${CUSTOM_IMAGE:-erpnext-complete}:${CUSTOM_TAG:-latest}
|
||||
build:
|
||||
|
|
|
|||
Loading…
Reference in a new issue