Last active
July 6, 2024 09:31
-
-
Save athlan/b6f09977e2f5cf20840ef61ca3cda932 to your computer and use it in GitHub Desktop.
Revisions
-
athlan revised this gist
Aug 31, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ * * * * * bash -c ". /root/.env.sh; /app/bin/console some:symfony_task_here &> /tmp/app-jobs-offers-sync-active.log" -
athlan revised this gist
Aug 31, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ * * * * * . /root/.env.sh; /app/bin/console some:symfony_task_here &> /tmp/app-jobs-offers-sync-active.log -
athlan created this gist
Aug 31, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ FROM XXXX #Install cron RUN apt-get update; \ apt-get install -y cron; \ apt-get clean; \ touch /var/log/cron.log COPY crontab.txt /etc/cron.d/crontab COPY run-cron.sh /usr/local/app/entrypoint/run-cron.sh CMD ["/usr/local/app/entrypoint/run-cron.sh"] This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ * * * * * /root/.env.sh; /app/bin/console some:symfony_task_here &> /tmp/app-jobs-offers-sync-active.log This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/bin/bash ENV_VARS_FILE="/root/.env.sh" echo "Dumping env variables into ${ENV_VARS_FILE}" printenv | sed 's/^\(.*\)$/export \1/g' > ${ENV_VARS_FILE} chmod +x ${ENV_VARS_FILE} echo "Applying crontab" crontab /etc/cron.d/crontab echo "Running crontab" cron -f