From f2086483fc2f7da1c3fb396bceae796a3cec7980 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sun, 10 May 2020 12:15:58 +0200 Subject: [PATCH] remove the cron container for firefly wasn't able to get it working --- firefly/.env | 1 - firefly/docker-compose.yml | 3 --- 2 files changed, 4 deletions(-) diff --git a/firefly/.env b/firefly/.env index 061dd7a..7d62201 100644 --- a/firefly/.env +++ b/firefly/.env @@ -1,5 +1,4 @@ APP_DOMAIN=firefly.zweili.org -CRON_TOKEN=token # You can leave this on "local". If you change it to production most console commands will ask for extra confirmation. # Never set it to "testing". diff --git a/firefly/docker-compose.yml b/firefly/docker-compose.yml index de39641..54cc274 100644 --- a/firefly/docker-compose.yml +++ b/firefly/docker-compose.yml @@ -32,6 +32,3 @@ services: - POSTGRES_PASSWORD=${DB_PASSWORD} volumes: - ./db:/var/lib/postgresql/data - cron: - image: alpine - command: sh -c "echo \"0 3 * * * wget https://firefly.zweili.org/cron/run/${CRON_TOKEN}\" | crontab - && crond -f -L /dev/stdout"