Skip to content
Snippets Groups Projects
Commit c5f36bf5 authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: .env DATABASE_URL postgres host changed from 'localhost' to 'postgres'

parent 32f6c2b0
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ DB_NAME=film-db
DB_PORT=5432
# PRISMA
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@localhost:${DB_PORT}/${DB_NAME}?schema=public
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@postgres:${DB_PORT}/${DB_NAME}?schema=public
# ADMINER
ADMINER_PORT=8080
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment