Creating migration depends on docker
BinodKafle opened this issue · 2 comments
BinodKafle commented
dipeshdulal commented
Yes, I think we need to decouple the migration logic whether to use docker or base system for migration runner.
Commands like;
make docker migrate
Or using flags in make command.
I don't know much about the make
command but @dipeshhkc can shed some light into this as well.
dipeshdulal commented
Looks like; this Stack Overflow answer has the solution to send custom variables to make file.
make foo=bar target
We could use this syntax to migrate without docker. eg; make provider=host migrate
for host migration runner and make provider=docker migrate
for docker based migration runner.