This commit is contained in:
dimitar 2025-03-31 16:47:38 +02:00
parent 41a853d5eb
commit d2a5f8095d
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ NODE_ENV=production
POSTGRES_USER=root
POSTGRES_PASSWORD=irina76
POSTGRES_DB=imk_db
DATABASE_URL="postgresql://postgres:postgres:5432/imk_db?schema=public"
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/imk_db?schema=public"
API_URL="https://imkapi.oblak.solutions"
CORS_ORIGIN="[http://localhost:5173,https://www.placebo.mk,https://placebo.mk]"

View File

@ -43,7 +43,7 @@ services:
container_name: imk-postgres
image: postgres:14-alpine
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}:5432/${POSTGRES_DB}
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}