From 20bca4bfe2278a18b60be7cf70cb0c4fda83c10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bernacki?= Date: Sat, 16 Sep 2023 01:27:46 +0200 Subject: [PATCH] remove debug echos (#12) --- start.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/start.sh b/start.sh index 6b7033b..8f4cca1 100755 --- a/start.sh +++ b/start.sh @@ -8,9 +8,6 @@ echo "run db migration" # If Dockerfile is not run with docker-compose, DB_SOURCE env var is not defined, so we must extract env var values from the app.env # file so that it can be used in the migrate step here source /app/app.env -cat /app/app.env -echo "value:" -echo $DB_SOURCE # When ran with dokcer-composee DB_SOURCE is defined in the docker-compose.yaml and the below command will later use its value /app/migrate -path /app/migration -database "$DB_SOURCE" -verbose up