You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
223 B
Docker

FROM alpine
# Install curl and set up the cron job
RUN apk add --no-cache curl && \
echo "*/5 * * * * curl http://wp:80/wp-cron.php?doing_wp_cron" > /etc/crontabs/root
# Run crond in the foreground
CMD ["crond", "-f"]