File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 1+ /.project
2+ /.settings /
3+ /.buildpath
Original file line number Diff line number Diff line change 11FROM webdevops/php-apache-dev:alpine-php7
22
3- # RUN service apache2 stop
4- # RUN apt-get update
5- # RUN apt-get -y install software-properties-common
6- # RUN apt-get install php7-xdebug
7- # RUN echo "xdebug.remote_enable=on" >> /etc/php7/mods-available/xdebug.ini \
8- # && echo "xdebug.remote_autostart=on" >> /etc/php7/mods-available/xdebug.ini \
9- # && echo "xdebug.remote_connect_back=on" >> /etc/php7/mods-available/xdebug.ini
10- # RUN service apache2 restart
11-
123RUN echo "Europe/Madrid" > /etc/timezone
134
145RUN touch /var/log/cron.log && \
15- echo "* * * * * php /var/www/html/bootstrap.php modules/ximSYNC /scripts/scheduler/scheduler.php" >> mycron && \
6+ echo "* * * * * php /var/www/html/bootstrap.php src/Sync /scripts/scheduler/scheduler.php" >> mycron && \
167 crontab mycron && rm mycron
178
189RUN crond
Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ ADD ./nginx.conf /etc/nginx/
55RUN echo "Europe/Madrid" > /etc/timezone
66
77RUN touch /var/log/cron.log && \
8- echo "* * * * * php /var/www/html/bootstrap.php modules/ximSYNC/scripts/scheduler/scheduler.php" >> mycron && crontab mycron && rm mycron
8+ echo "* * * * * php /var/www/html/bootstrap.php src/Sync/scripts/scheduler/scheduler.php" >> mycron && crontab mycron && rm mycron
9+
910RUN crond
You can’t perform that action at this time.
0 commit comments