Skip to content

jsonfry/docker-curl-cron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jsonfry/curl-cron

Docker image that runs periodically runs a curl command

Usage

docker run -d [OPTIONS] jsonfry/curl-cron

Required Parameters:

  • -e OPTIONS=<OPTIONS>: curl command options
  • -e CRON_SCHEDULE="0 1 * * *": specifies when cron job starts (details), e.g. 0 1 * * * (runs every night at 1:00).

Optional parameters:

  • now: run container once and exit (no cron scheduling).

Examples:

Run every hour with cron schedule (container keeps running):

docker run -d \
    -e OPTIONS=example.com \
    -e CRON_SCHEDULE="0 1 * * *" \
    jsonfry/curl-cron

Run just once (container is deleted afterwards):

docker run --rm \
    -e OPTIONS=example.com \
    jsonfry/curl-cron now

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages