A few days ago I deployed a toy phoenix web application backed by a SQLite database. The fly
CLI generated a proper Dockerfile
for it and a fly.toml
with a release_command
that ensures migrations are run. I created a volume and configured it to be mounted at /data
. The directory is visible from the shell of the launched application (checked with fly ssh console
+ ls /
), but it is not visible from the migration script (checked by adding ls -la /
to the migration script and looking at the logs).
Is this a bug?