This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

19 lines
660 B
Docker

###############################################################################
# EspoCRM - Development Server for Extensions
# Based on official image, overlays custom code on each deploy
###############################################################################
FROM espocrm/espocrm:latest
# Fix redirect loop: tell Apache it's behind HTTPS proxy (Traefik)
RUN echo 'SetEnv HTTPS on' > /etc/apache2/conf-available/force-https.conf && \
a2enconf force-https
# Copy custom extensions and modifications
COPY custom/ /var/www/html/custom/
# Ensure correct permissions
RUN chown -R www-data:www-data /var/www/html/custom
EXPOSE 80