nallwhy
What is the best practice to run ecto migration before deploying?
I’m deploying my app with fly.io.
I have no idea how to run ecto migration before deploying.
If I don’t do that, new version app will make errors because of broken DB schema.
I only have the information about prod DB in secrets of fly.io, not in local.
Marked As Solved
stefanchrobot
Take a look at the Phoenix’s deployment guide. I think people usually run the migrations right before the app starts. I run those as one Docker command:
CMD ["sh", "-c", "bin/app eval MyApp.Release.migrate && bin/app start"]
Also Liked
trisolaran
I don’t think you need to take any special care. Ecto takes care of this case by locking the migrations table:
https://hexdocs.pm/ecto_sql/Ecto.Migrator.html#run/4-execution-model
Another reason to love Ecto ![]()
zachallaun
Highly recommend the Safe Ecto Migrations series of posts — gave me a lot more confidence and understanding in this area.
trisolaran
Yes. The first instance to acquire the lock will run the migrations. All other instances will wait for the first instance to finish and release the lock - they will then acquire the lock in turn, see the database already migrated, and do nothing.
Hermanverschooten
And I do the same as an ExecStartPre in systemd.
ExecStartPre= /opt/admin/bin/admin eval "Admin.Release.migrate()"
ExecStart= /opt/admin/bin/admin start
ExecStop= /opt/admin/bin/admin stop
oliveiragahenrique
Hey everyone, I know this is an old thread but building on the accepted answer, I ran into an issue where docker compose stop was timing out on Elixir containers. The problem was the shell script (sh) handling SIGTERM as PID 1 instead of the BEAM.
To fix this, I updated the custom Phoenix server script (rel/overlays/bin/server):
#!/bin/sh
set -eu
cd -P -- "$(dirname -- "$0")"
# added this migration line
./my_app eval MyApp.Release.migrate
PHX_SERVER=true exec ./my_app start
With this, the Dockerfile stays:
CMD ["/app/bin/server"]
Now migrations run on startup, and SIGTERM signals are properly handled. Hope this helps someone that may be going through the same problem! Thanks! (:







