removing references to letzshop, replacing by wizamart

This commit is contained in:
2025-11-23 20:19:00 +01:00
parent c100d839f1
commit 756e12fe7b
13 changed files with 58 additions and 56 deletions

View File

@@ -6,7 +6,7 @@ services:
image: postgres:15
restart: always
environment:
POSTGRES_DB: ecommerce_db
POSTGRES_DB: wizamart_db
POSTGRES_USER: ecommerce_user
POSTGRES_PASSWORD: secure_password
volumes:
@@ -15,7 +15,7 @@ services:
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ecommerce_user -d ecommerce_db"]
test: ["CMD-SHELL", "pg_isready -U wizamart_user -d wizamart_db"]
interval: 30s
timeout: 10s
retries: 3