We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 665a064 commit ef0a60bCopy full SHA for ef0a60b
2 files changed
Scripts/RestoreDB.sh
@@ -6,5 +6,3 @@ if [ -f "${PGDATA_BACKUP}" ]; then
6
else
7
cat /CreateDB.sql | psql --dbname=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} 2> ${BACKUP_RESTORE_LOG}
8
fi
9
-
10
-sh /Migrate.db
Scripts/secrets-entrypoint.sh
@@ -10,4 +10,7 @@ fi
# restore database
11
sh /RestoreDB.sh
12
13
+#migrate database
14
+sh /MigrateDB.sh
15
+
16
exec dotnet SimpleToDoService.dll
0 commit comments