Added cron files copying to workspace crontab

This commit is contained in:
philtrep 2016-10-03 20:08:54 -04:00
parent a1fd2aabcd
commit 6f435584a9
3 changed files with 18 additions and 0 deletions

View File

@ -60,6 +60,7 @@ It's like Laravel Homestead but for Docker instead of Vagrant.
- [Production](#Production)
- [Setup Laravel and Docker on Digital Ocean](#Digital-Ocean)
- [Misc](#Misc)
- [Cron jobs](#CronJobs)
- [Use custom Domain](#Use-custom-Domain)
- [Enable Global Composer Build Install](#Enable-Global-Composer-Build-Install)
- [Install Prestissimo](#Install-Prestissimo)
@ -936,6 +937,17 @@ To controll the behavior of xDebug (in the `php-fpm` Container), you can run the
<br>
<a name="CronJobs"></a>
### Adding cron jobs
Add a root file containing the cron jobs in `workspace/crontab`.
```
# workspace/crontab/root
* * * * * root echo "Every Minute" > /var/log/cron.log 2>&1
```
<a name="Use-custom-Domain"></a>
### Use custom Domain (instead of the Docker IP)

View File

@ -198,6 +198,12 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \
rm /etc/php/7.0/cli/conf.d/aerospike.ini \
;fi
#####################################
# Crontab
#####################################
USER root
COPY ./crontab /var/spool/cron/crontabs
#
#--------------------------------------------------------------------------
# Final Touch

View File