From 2bba1360af2f25ba11a1dfaf0474acbf7985c0d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bernacki?= Date: Fri, 15 Sep 2023 19:48:06 +0200 Subject: [PATCH] remove echo db_source again --- start.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/start.sh b/start.sh index adf11b5..8f4cca1 100755 --- a/start.sh +++ b/start.sh @@ -8,7 +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 -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