fix: update Prisma schema path and upgrade PostgreSQL image to 18-alpine

This commit is contained in:
2026-07-25 09:19:53 +02:00
parent 4521ec1b3e
commit eacbf59a10
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
``` ```
./backend/ # Node backend (rj-web) ./backend/ # Node backend (rj-web)
./frontend/ # React + Vite frontend ./frontend/ # React + Vite frontend
./prisma/schema.prisma # Prisma schema ./backend/prisma/schema.prisma # Prisma schema
./docker-compose.yml # Compose + Dockerfile for PP itself ./docker-compose.yml # Compose + Dockerfile for PP itself
``` ```
+1 -3
View File
@@ -2,7 +2,7 @@ version: "3.9"
services: services:
pp-db: pp-db:
image: postgres:16-alpine image: postgres:18-alpine
restart: unless-stopped restart: unless-stopped
environment: environment:
POSTGRES_USER: pp POSTGRES_USER: pp
@@ -15,8 +15,6 @@ services:
interval: 10s interval: 10s
timeout: 5s timeout: 5s
retries: 5 retries: 5
ports:
- "5432:5432"
pp-backend: pp-backend:
build: build: