11 lines
211 B
Docker
11 lines
211 B
Docker
FROM alpine:latest
|
|
MAINTAINER Richard Morgan
|
|
|
|
|
|
COPY ./periodic /etc/periodic/15min
|
|
|
|
# Run the command on container startup
|
|
#CMD cron && tail -f /var/log/cron.log
|
|
#CMD tail -f /var/log/cron.log
|
|
CMD crond -l 2 -f
|