From df0d9a3e3e3ae8b0f5d38a4ff9ae96e47a11df47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bernacki?= Date: Sat, 16 Sep 2023 01:24:33 +0200 Subject: [PATCH] remove debug echos --- 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