From beaac25180fd7f892b46c6b2cf4f2fa66c3e09ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Mon, 15 Sep 2025 11:06:16 -0300 Subject: [PATCH] Update Docker configuration for service port and cleanup - Changed the web service port mapping from 8081 to 8088 for better alignment with application requirements. - Removed unnecessary NTP installation and commands from the Dockerfile to streamline the build process. These changes enhance the Docker setup for the Truncgil Finance application by improving service accessibility and optimizing the build configuration. --- docker-compose.yml | 2 +- dockerfile | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) mode change 100644 => 100755 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml old mode 100644 new mode 100755 index 0320acb..b2629db --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,7 +17,7 @@ services: container_name: truncgil-finance-web restart: always ports: - - "8081:80" + - "8088:80" volumes: - .:/var/www - ./nginx/default.conf:/etc/nginx/conf.d/default.conf diff --git a/dockerfile b/dockerfile index f140fe9..84fd1d4 100755 --- a/dockerfile +++ b/dockerfile @@ -15,10 +15,7 @@ RUN apt-get update && apt-get install -y \ libxml2-dev \ zip \ cron \ - ntp \ && service cron start && \ - ntpd -gq && \ - ntpd && \ docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd \ && echo "* * * * * cd /var/www && php /var/www/artisan run-all-fetchs >> /dev/null 2>&1" >> /etc/cron.d/laravel-cron \ && chmod 0644 /etc/cron.d/laravel-cron \