Double Slash in Path Causes ENOENT Error When Running Migrations in Docker
Hi everyone, I’m encountering an issue with Drizzle Kit when running migrations in a Docker container. The error occurs because Drizzle Kit is trying to read the 0000_snapshot.json file using a path with a double slash (//), like this:
ENOENT: no such file or directory, open './/app/apps/my-app/src/drizzle/meta/0000_snapshot.json'
The file exists at the correct path (/app/apps/my-app/src/drizzle/meta/0000_snapshot.json), but the double slash seems to be causing the issue. Here’s what I’ve tried so far:
Verified that the schema.ts file is correct and the migration files are generated properly.
Used path.resolve and path.normalize in drizzle.config.ts to ensure paths are correct.
Confirmed that the snapshot file exists in the container at the expected location.
Here’s my drizzle.config.ts:
And here’s the relevant part of my docker-compose.yml:
It seems to be caused by
Can't we fix it by doing
Has anyone encountered this issue before? Is there a way to prevent Drizzle Kit from introducing the double slash in the path? Any help would be greatly appreciated!1 Reply
Here is an example