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:
ubden 2025-10-14 01:15:21 +03:00
parent 7fa85a277f
commit c1c9b695aa
4 changed files with 3 additions and 7 deletions

View file

@ -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

View file

@ -13,7 +13,7 @@
},
{
"url": "https://github.com/frappe/helpdesk.git",
"branch": "main"
"branch": "v1.14.0"
},
{
"url": "https://github.com/frappe/lms.git",

View file

@ -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

View file

@ -1,5 +1,3 @@
version: '3.8'
x-customizable-image: &customizable_image
image: ${CUSTOM_IMAGE:-erpnext-complete}:${CUSTOM_TAG:-latest}
build: