autocomit

This commit is contained in:
2026-02-07 20:14:12 +01:00
parent bc5370d84d
commit 1b92b613d4
25 changed files with 1314 additions and 15 deletions
+10 -13
View File
@@ -33,34 +33,31 @@ services:
DB_USERNAME: ldpv2_user
DB_PASSWORD: ldpv2_password
JWT_SECRET: your-secret-key-change-in-production-minimum-512-bits-for-hs512-algorithm
ports:
- "8080:8080"
networks:
- ldpv2-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/api/actuator/health"]
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "/api/actuator/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
start_period: 60s
frontend:
app:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: ldpv2-frontend
context: .
dockerfile: Dockerfile.app
container_name: ldpv2-app
depends_on:
- backend
backend:
condition: service_healthy
ports:
- "4200:80"
- "80:80"
networks:
- ldpv2-network
environment:
API_URL: http://backend:8080/api
volumes:
postgres_data:
networks:
ldpv2-network:
driver: bridge
driver: bridge