Created
March 1, 2017 13:02
-
-
Save docteurklein/1815bdd73d698940178c1f734853310a to your computer and use it in GitHub Desktop.
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 characters
| 10 0 * * * docker run my_container some-command |
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 characters
| FROM alpine:edge | |
| RUN apk add --no-cache docker | |
| ENTRYPOINT ["/usr/sbin/crond", "-f", "-d", "8"] | |
| COPY crontab /crontab | |
| RUN crontab /crontab |
Author
docteurklein
commented
Mar 1, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment