From 590e54386464e7f9609ad0fa7c8e226f42ba4dd4 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Mon, 16 Jan 2023 12:16:30 -0500 Subject: [PATCH] Move healthcheck.py to scripts --- docker-compose.yml | 2 +- healthcheck.py => scripts/healthcheck.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename healthcheck.py => scripts/healthcheck.py (100%) diff --git a/docker-compose.yml b/docker-compose.yml index a634356..77ecc1c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: ports: - "5000:5000" healthcheck: - test: ['CMD-SHELL', './venv/bin/python healthcheck.py'] + test: ['CMD-SHELL', './venv/bin/python scripts/healthcheck.py'] ## Uncomment above command and define your args if necessary # command: --ssl --ga-id MY-GA-ID --req-limit 100 --char-limit 500 ## Uncomment this section and the `volumes` section if you want to backup your API keys diff --git a/healthcheck.py b/scripts/healthcheck.py similarity index 100% rename from healthcheck.py rename to scripts/healthcheck.py