Furki4_4
Furki4_4
Explore posts from servers
DTDrizzle Team
Created by joshborseth on 9/14/2023 in #help
TypeError: Cannot read properties of undefined (reading 'compositePrimaryKeys')
my column names are not too long, but still having the same issue. I can't even push the same migration after regenerating them from scratch. I tried giving custom names to composite keys but didn't work as well. kit version: 0.22.2 orm version: 0.31.1
44 replies
DTDrizzle Team
Created by jakeleventhal on 1/8/2024 in #help
How to run drizzle-kit studio out of docker?
alright, thank you for responding :HYPERSL: if possible, can you please tag someone who may help us?
13 replies
DTDrizzle Team
Created by jakeleventhal on 1/8/2024 in #help
How to run drizzle-kit studio out of docker?
@Angelelz may you help us?
13 replies
DTDrizzle Team
Created by jakeleventhal on 1/8/2024 in #help
How to run drizzle-kit studio out of docker?
No description
13 replies
DTDrizzle Team
Created by jakeleventhal on 1/8/2024 in #help
How to run drizzle-kit studio out of docker?
Hi @jakeleventhal I'm having a similar problem, have you found a solution? I'm running a node container for Next.js application and a postgres server. Since I boot drizzle studio inside the web container, I thought porting 4983:4983 would solve it but didn't work.
version: "3.8"
services:
web:
build: .
volumes:
- .:/app
- /app/node_modules
links:
- db
environment:
- DATABASE_URL=postgresql://postgres:furkicik@db:5432/turkish_dictionary
ports:
- "3000:3000"
- "4983:4983"
db:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=furkicik
- POSTGRES_DB=turkish_dictionary
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data

volumes:
db-data:
version: "3.8"
services:
web:
build: .
volumes:
- .:/app
- /app/node_modules
links:
- db
environment:
- DATABASE_URL=postgresql://postgres:furkicik@db:5432/turkish_dictionary
ports:
- "3000:3000"
- "4983:4983"
db:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=furkicik
- POSTGRES_DB=turkish_dictionary
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data

volumes:
db-data:
13 replies