Last active
July 6, 2024 09:31
-
-
Save athlan/b6f09977e2f5cf20840ef61ca3cda932 to your computer and use it in GitHub Desktop.
Docker cron env variables
This file contains 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 characters
* * * * * bash -c ". /root/.env.sh; /app/bin/console some:symfony_task_here &> /tmp/app-jobs-offers-sync-active.log" |
This file contains 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 characters
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 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 characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
printenv | sed 's/^(.*)$/export \1/g' > ${ENV_VARS_FILE}
This will be failed when there are any special characters in your environment variable values.
I suggest using the following piece of code to export environment variables.
eval $(printenv | awk -F= '{print "export " "\""$1"\"""=""\""$2"\"" }' >> /etc/profile)