From 23d0115222ae2d0891fa6b911e215883b948e924 Mon Sep 17 00:00:00 2001 From: jmqm Date: Mon, 30 Aug 2021 11:34:54 -0500 Subject: [PATCH] Minor updates (#24) - Remove `crontab`. - Rename dockerize action. --- .github/workflows/dockerize.yml | 2 +- Dockerfile | 1 - README.md | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/dockerize.yml b/.github/workflows/dockerize.yml index 7b4097e..41634b3 100644 --- a/.github/workflows/dockerize.yml +++ b/.github/workflows/dockerize.yml @@ -8,7 +8,7 @@ on: # Instructions on what to do. # In this case, 'build' is the job and Ubuntu is the OS to run the job on. jobs: - build: + main: runs-on: ubuntu-latest env: USERNAME: jmqm diff --git a/Dockerfile b/Dockerfile index c6f1c5e..f4161fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,6 @@ RUN apk add --no-cache \ ENV CRON_TIME "0 */12 * * *" ENV UID 100 ENV GID 100 -ENV CRONFILE /etc/crontabs/root ENV DELETE_AFTER 0 COPY entrypoint.sh /usr/local/bin/entrypoint.sh diff --git a/README.md b/README.md index 333bcb3..292befe 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,6 @@ services: | Environment Variable | Info | | -------------------- | -------------------------------------------------------------------------------------------- | | TZ ¹ | Timezone inside the container. Can mount `/etc/localtime` instead as well _(recommended)_. | -| CRONFILE | Cron file path relative to inside the container. | ¹ See for more information