fixed some display bugs

This commit is contained in:
2025-11-19 16:31:42 +01:00
parent 6556d2c01d
commit 4ec14416ca
3 changed files with 24 additions and 20 deletions

View File

@@ -13,25 +13,25 @@ services:
# - "8003:80"
# restart: unless-stopped
backend:
container_name: borrow_system-backend
build: ./backend
ports:
- "8002:8002"
environment:
NODE_ENV: production
DB_HOST: mysql
DB_USER: root
DB_PASSWORD: ${DB_PASSWORD}
DB_NAME: borrow_system
depends_on:
- mysql
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8002/server-info"]
interval: 30s
timeout: 5s
retries: 3
#backend:
# container_name: borrow_system-backend
# build: ./backend
# ports:
# - "8002:8002"
# environment:
# NODE_ENV: production
# DB_HOST: mysql
# DB_USER: root
# DB_PASSWORD: ${DB_PASSWORD}
# DB_NAME: borrow_system
# depends_on:
# - mysql
# restart: unless-stopped
# healthcheck:
# test: ["CMD", "wget", "-qO-", "http://localhost:8002/server-info"]
# interval: 30s
# timeout: 5s
# retries: 3
backend_v2:
container_name: borrow_system-backend_v2