JROCBABY
DTDrizzle Team
•Created by JROCBABY on 3/22/2025 in #help
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!2 replies
DTDrizzle Team
•Created by JROCBABY on 3/21/2025 in #help
TypeScript Error: Circular Reference in Drizzle ORM Schema
Hey everyone, I’m getting TypeScript errors in my Drizzle ORM schema due to a circular reference. Here’s the code:
typescript
Copy
Hey everyone, I’m getting TypeScript errors in my Drizzle ORM schema due to a circular reference. Here’s the code:
typescript
Copy
Errors:
What I’ve Tried:
Using InferModel to infer the table type.
Explicitly defining the table type with PgTableWithColumns.
How can I properly type this schema to resolve the circular reference errors? Any help would be appreciated!
3 replies