26 Commits
0.5.0 ... 0.6.0

Author SHA1 Message Date
a4e4227327 doc: clean up 2020-12-02 13:22:35 -07:00
ef29a8dadc ci: build on all tags 2020-12-02 13:18:01 -07:00
e28e8dbd2f docs: bump version 2020-12-02 13:16:14 -07:00
cba326b800 ci: remove platform list 2020-12-02 12:54:34 -07:00
16396988c2 ci: fix typo 2020-12-02 12:49:55 -07:00
22900fddd1 ci: extra logging 2020-12-02 12:47:50 -07:00
ff6fde0e5b ci: echo tag value 2020-12-02 12:41:45 -07:00
5f5abd5251 ci: fix typo 2020-12-02 12:01:31 -07:00
84ce659f86 ci: change how tag is built 2020-12-02 11:50:10 -07:00
92d2c91227 ci: force expression tag 2020-12-02 11:45:32 -07:00
0ef158253f ci: fix str 2020-12-02 11:43:12 -07:00
af7994a740 ci: fix how tag is built 2020-12-02 11:42:08 -07:00
1af64f5f7d ci: log env 2020-12-02 11:39:27 -07:00
44a4708123 ci: change how env is set 2020-12-02 11:35:28 -07:00
85a0ecf368 ci: ensure push always happens 2020-12-02 11:32:39 -07:00
cdf3f1a005 docs: update tag versions 2020-12-02 11:31:16 -07:00
e81c5c7fb9 ci: fix docker login 2020-12-02 11:26:30 -07:00
71b0bf9ac2 ci: fix eq operator 2020-12-02 11:23:41 -07:00
61149875ae ci: fix expression 2020-12-02 11:22:09 -07:00
2c633af586 ci: syntax fix 2020-12-02 11:20:25 -07:00
8940b3300e ci: add in build process 2020-12-02 11:18:46 -07:00
6406e1f6e4 docs: add docker pull count 2020-12-01 17:34:27 -07:00
9349a92372 docs: add funcing 2020-11-30 22:41:56 -07:00
c82354e261 Merge pull request #29 from martinec/patch-1
Update README.md
2020-02-26 12:33:12 -07:00
21e58d0588 feat: add license 2019-08-04 17:10:47 -06:00
911eed81f6 Update README.md
The final Ofelia image has now a size of ~10MB

@see https://github.com/mcuadros/ofelia/pull/20
2019-03-27 14:28:48 +01:00
4 changed files with 84 additions and 3 deletions

12
.github/FUNDING.yml vendored Normal file
View File

@ -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']

48
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: build
on:
push:
branches:
- main
tags:
- '*'
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.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- if: github.ref == 'refs/heads/main'
name: Conditional(Set tag as `latest`)
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
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: |
${{ env.tag }}

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2019 will Farrell
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -5,12 +5,12 @@ A simple wrapper over `docker` to all complex cron job to be run in other contai
## Supported tags and Dockerfile links ## Supported tags and Dockerfile links
- [`latest` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile) - [`latest` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile)
- [`0.6.0` (*Dockerfile*)](https://github.com/willfarrell/docker-crontab/blob/0.6.0/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? ## 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. 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 ## Features