From fb1b18f4115ebeac1be847f80acd2cc18ce04219 Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Sat, 20 Jan 2024 19:12:49 +0100 Subject: [PATCH] make sure cron entries work "localhost" in the cron container doesn't resolve to the instance running the web service, which is launched under service "web". By changing these entries, the cron entries will work. --- docker/cron-cloudlog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/cron-cloudlog b/docker/cron-cloudlog index 1e049c5..a8d1a91 100644 --- a/docker/cron-cloudlog +++ b/docker/cron-cloudlog @@ -1,3 +1,3 @@ -@weekly curl --silent http://localhost/index.php/lotw/load_users &>/dev/null -@weekly curl --silent http://localhost/index.php/update/dxcc &>/dev/null -@weekly curl --silent http://localhost/index.php/update/update_clublog_scp &>/dev/null +@weekly curl --silent http://web/index.php/lotw/load_users &>/dev/null +@weekly curl --silent http://web/index.php/update/dxcc &>/dev/null +@weekly curl --silent http://web/index.php/update/update_clublog_scp &>/dev/null