From 911eed81f6d6788e6bb9c2bce86ffaeaa46c7a21 Mon Sep 17 00:00:00 2001 From: Cristian Martinez Date: Wed, 27 Mar 2019 14:28:48 +0100 Subject: [PATCH 01/24] Update README.md The final Ofelia image has now a size of ~10MB @see https://github.com/mcuadros/ofelia/pull/20 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 984747f..7f1667f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai ## Why? -Yes, I'm aware of [mcuadros/ofelia](https://github.com/mcuadros/ofelia) (280MB), it was the main inspiration for this project. +Yes, I'm aware of [mcuadros/ofelia](https://github.com/mcuadros/ofelia) (~10MB), it was the main inspiration for this project. A great project, don't get me wrong. It was just missing certain key enterprise features I felt were required to support where docker is heading. ## Features From 9349a92372cdddedc09ff15dc51f88eabd7f988e Mon Sep 17 00:00:00 2001 From: will Farrell Date: Mon, 30 Nov 2020 22:41:56 -0700 Subject: [PATCH 02/24] docs: add funcing --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..8e3a4a8 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [willfarrell]# Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 6406e1f6e4e6dda7a6823ee2e87767f2a2f1d558 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Tue, 1 Dec 2020 17:34:27 -0700 Subject: [PATCH 03/24] docs: add docker pull count --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f1667f..62da64a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai - [`latest` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile) -[![](https://images.microbadger.com/badges/version/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own version badge on microbadger.com") [![](https://images.microbadger.com/badges/image/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com") +![](https://img.shields.io/docker/pulls/willfarrell/crontab "Total docker pulls") [![](https://images.microbadger.com/badges/image/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com") ## Why? From 8940b3300ecf76fe5a25c90690e197ecb5fbb0de Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:18:41 -0700 Subject: [PATCH 04/24] ci: add in build process --- .github/workflows/build.yml | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..05b3fac --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,49 @@ +name: build + +on: + push: + branches: + - main + tags: + - '^\d+\.\d+\.\d+$' + schedule: + - cron: '0 0 * * * *' + +jobs: + multi: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Inject slug/short variables + uses: rlespinasse/github-slug-action@v3.x + + - if: github.ref === 'refs/heads/main' + run: echo ::set-output name=tag::latest + - if: startsWith(github.ref, 'refs/tags/') + run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + + - if: env.tag + name: Build and push + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x + push: true + tags: | + willfarrell/crontab:${{ env.tag }} \ No newline at end of file From 2c633af58698baf5401b942f8d8d3c7434d0b603 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:20:25 -0700 Subject: [PATCH 05/24] ci: syntax fix --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05b3fac..26c3391 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: tags: - '^\d+\.\d+\.\d+$' schedule: - - cron: '0 0 * * * *' + - cron: '0 0 * * *' jobs: multi: From 61149875ae4290d1ba2023e78807eac90685c355 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:22:09 -0700 Subject: [PATCH 06/24] ci: fix expression --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26c3391..1e8a94e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,9 +32,9 @@ jobs: - name: Inject slug/short variables uses: rlespinasse/github-slug-action@v3.x - - if: github.ref === 'refs/heads/main' + - if: ${{ github.ref === 'refs/heads/main' }} run: echo ::set-output name=tag::latest - - if: startsWith(github.ref, 'refs/tags/') + - if: ${{ startsWith(github.ref, 'refs/tags/') }} run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - if: env.tag From 71b0bf9ac2c0e15dcd1ecca0aae77fae5572b72a Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:23:41 -0700 Subject: [PATCH 07/24] ci: fix eq operator --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e8a94e..c13aa6f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,9 +32,9 @@ jobs: - name: Inject slug/short variables uses: rlespinasse/github-slug-action@v3.x - - if: ${{ github.ref === 'refs/heads/main' }} + - if: github.ref == 'refs/heads/main' run: echo ::set-output name=tag::latest - - if: ${{ startsWith(github.ref, 'refs/tags/') }} + - if: startsWith(github.ref, 'refs/tags/') run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - if: env.tag From e81c5c7fb951b35fdc648a5c690b501fc7670c48 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:26:30 -0700 Subject: [PATCH 08/24] ci: fix docker login --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c13aa6f..c2abe0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,15 +26,15 @@ jobs: name: Login to DockerHub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Inject slug/short variables - uses: rlespinasse/github-slug-action@v3.x + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - if: github.ref == 'refs/heads/main' + name: Conditional(Set tag as `latest`) run: echo ::set-output name=tag::latest + - if: startsWith(github.ref, 'refs/tags/') + name: Conditional(Set tag as `{version}`) run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - if: env.tag From cdf3f1a005814e36dab2453bafe8533a875b64d4 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:31:16 -0700 Subject: [PATCH 09/24] docs: update tag versions --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 62da64a..2b11cad 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai ## Supported tags and Dockerfile links - [`latest` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile) +- [`1.0.0` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/1.0.0/Dockerfile) ![](https://img.shields.io/docker/pulls/willfarrell/crontab "Total docker pulls") [![](https://images.microbadger.com/badges/image/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com") From 85a0ecf368a9e8cb7867b1487de861909f0cc785 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:32:39 -0700 Subject: [PATCH 10/24] ci: ensure push always happens --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2abe0a..6dee49d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - - if: env.tag + - name: Build and push uses: docker/build-push-action@v2 with: From 44a4708123c6bf0f8295e959622497f63433b9e5 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:35:28 -0700 Subject: [PATCH 11/24] ci: change how env is set --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6dee49d..d2abdea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,13 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo ::set-output name=tag::latest + run: echo "tag=latest >> $GITHUB_ENV" - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - - + - name: Build and push uses: docker/build-push-action@v2 with: From 1af64f5f7dbdd856cc494b7dbd05cad0eb83bf07 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:39:27 -0700 Subject: [PATCH 12/24] ci: log env --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2abdea..c3cc0f9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,6 +37,8 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" + - run: echo "$tag + - name: Build and push uses: docker/build-push-action@v2 From af7994a740a7aa774b3749679d3a4d889a599865 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:42:08 -0700 Subject: [PATCH 13/24] ci: fix how tag is built --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3cc0f9..738697f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,4 +48,4 @@ jobs: platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | - willfarrell/crontab:${{ env.tag }} \ No newline at end of file + join(['willfarrell/crontab', env.tag], ':') \ No newline at end of file From 0ef158253fc4c7463eb4b6c3a048592884f66687 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:43:12 -0700 Subject: [PATCH 14/24] ci: fix str --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 738697f..2b6720e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - - run: echo "$tag + - run: echo "$tag" - name: Build and push From 92d2c912274e8b8a1fcefee7dd548d4bdddac13a Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:45:32 -0700 Subject: [PATCH 15/24] ci: force expression tag --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b6720e..07b01ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,4 +48,4 @@ jobs: platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | - join(['willfarrell/crontab', env.tag], ':') \ No newline at end of file + ${{ join(['willfarrell/crontab', env.tag], ':') }} \ No newline at end of file From 84ce659f864005cc762289acfc230243989a182c Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 11:50:10 -0700 Subject: [PATCH 16/24] ci: change how tag is built --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07b01ea..077f62f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,11 +31,11 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo "tag=latest >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:latest >> $GITHUB_ENV" - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - run: echo "$tag" @@ -48,4 +48,4 @@ jobs: platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | - ${{ join(['willfarrell/crontab', env.tag], ':') }} \ No newline at end of file + ${{ env.ta }} \ No newline at end of file From 5f5abd5251d5b3866202f74c62295ea2c4e58ad8 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 12:01:31 -0700 Subject: [PATCH 17/24] ci: fix typo --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 077f62f..14b46df 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,4 +48,4 @@ jobs: platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | - ${{ env.ta }} \ No newline at end of file + ${{ env.tag }} From ff6fde0e5bf4f5c955d1630a815db1329f506a0f Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 12:41:45 -0700 Subject: [PATCH 18/24] ci: echo tag value --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14b46df..fa8ffa0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - - run: echo "$tag" + - run: echo "${{ env.tag }}" - name: Build and push From 22900fddd16dafc2eb32e371229d8b54fc3a0fd3 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 12:47:50 -0700 Subject: [PATCH 19/24] ci: extra logging --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa8ffa0..4a9559e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,10 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV" - - run: echo "${{ env.tag }}" + - run: | + echo "$tag" + echo "${{ env.tag }}" + echo "${{ toJson(env) }}" - name: Build and push From 16396988c23d0c3d85e1263fb9f0e7c686bc8fbd Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 12:49:55 -0700 Subject: [PATCH 20/24] ci: fix typo --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a9559e..9fbfe28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,11 +31,11 @@ jobs: - if: github.ref == 'refs/heads/main' name: Conditional(Set tag as `latest`) - run: echo "tag=willfarrell/crontab:latest >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:latest" >> $GITHUB_ENV - if: startsWith(github.ref, 'refs/tags/') name: Conditional(Set tag as `{version}`) - run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/} >> $GITHUB_ENV" + run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - run: | echo "$tag" From cba326b80020c621132844d108722941e215876a Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 12:54:34 -0700 Subject: [PATCH 21/24] ci: remove platform list --- .github/workflows/build.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9fbfe28..1b5c187 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,18 +37,12 @@ jobs: name: Conditional(Set tag as `{version}`) run: echo "tag=willfarrell/crontab:${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - - run: | - echo "$tag" - echo "${{ env.tag }}" - echo "${{ toJson(env) }}" - - name: Build and push uses: docker/build-push-action@v2 with: context: . file: ./Dockerfile - platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x push: true tags: | ${{ env.tag }} From e28e8dbd2f9b087f79797445679bb90659552995 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 13:16:14 -0700 Subject: [PATCH 22/24] docs: bump version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b11cad..0e9fc94 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai ## Supported tags and Dockerfile links - [`latest` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile) -- [`1.0.0` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/1.0.0/Dockerfile) +- [`0.6.0` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/0.6.0/Dockerfile) ![](https://img.shields.io/docker/pulls/willfarrell/crontab "Total docker pulls") [![](https://images.microbadger.com/badges/image/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com") From ef29a8dadce018402a40415756698e45f47139b2 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 13:18:01 -0700 Subject: [PATCH 23/24] ci: build on all tags --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b5c187..a94098c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: branches: - main tags: - - '^\d+\.\d+\.\d+$' + - '*' schedule: - cron: '0 0 * * *' From a4e4227327826120f173c0a29188478c44e87be8 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Wed, 2 Dec 2020 13:22:31 -0700 Subject: [PATCH 24/24] doc: clean up --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0e9fc94..776149b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai ![](https://img.shields.io/docker/pulls/willfarrell/crontab "Total docker pulls") [![](https://images.microbadger.com/badges/image/willfarrell/crontab.svg)](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com") - ## Why? Yes, I'm aware of [mcuadros/ofelia](https://github.com/mcuadros/ofelia) (~10MB), it was the main inspiration for this project. A great project, don't get me wrong. It was just missing certain key enterprise features I felt were required to support where docker is heading.