DONE: queue management for customer side to get queue number, add logo to teller display, advertisement module

This commit is contained in:
ISMAIL MASSERAN
2026-07-23 10:50:35 +08:00
parent a671f7ad5c
commit 9bc06f1d5b
72 changed files with 13919 additions and 182 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
services:
mysql:
image: mysql:8
container_name: bbqms-mysql
container_name: qms-mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: bbqms
MYSQL_DATABASE: qms
volumes:
- bbqms-mysql-data:/var/lib/mysql
- qms-mysql-data:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-ppassword"]
interval: 5s
@@ -16,4 +16,4 @@ services:
retries: 10
volumes:
bbqms-mysql-data:
qms-mysql-data: