From 3328e8051bb48fea1ce6bdd19207eb3077679f44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bernacki?= Date: Fri, 15 Sep 2023 19:50:52 +0200 Subject: [PATCH] Fix invalid db_source (#6) * Echo db_source * remove echo db_source * 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