DONE: cicd pipeline for customer fe
Build Docker Image / build-backend (push) Successful in 5s
Build Docker Image / build-admin (push) Successful in 6s
Build Docker Image / build-teller (push) Successful in 9s
Build Docker Image / build-customer (push) Successful in 2m14s

This commit is contained in:
ISMAIL MASSERAN
2026-07-23 12:41:20 +08:00
parent ea49e140e9
commit 621cf212f5
10 changed files with 135 additions and 16 deletions
+14
View File
@@ -23,3 +23,17 @@ services:
restart: unless-stopped
ports:
- "${TELLER_HOST_PORT:-3001}:80"
customer:
image: ${CUSTOMER_IMAGE:-qms-fe-customer}:${IMAGE_TAG:-local}
build:
context: ./customer-app
dockerfile: Dockerfile
args:
NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8080}
container_name: qms-fe-customer
restart: unless-stopped
ports:
- "${CUSTOMER_HOST_PORT:-3000}:3000"
environment:
QR_TOKEN_SECRET: ${QR_TOKEN_SECRET:-qms-branch-qr-v1}