DONE: cicd pipeline for frontend that uses ip first
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
admin:
|
||||
image: ${ADMIN_IMAGE:-qms-fe-admin}:${IMAGE_TAG:-local}
|
||||
build:
|
||||
context: ./admin-app
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
VITE_API_URL: ${VITE_API_URL:-http://localhost:8080}
|
||||
VITE_CUSTOMER_APP_URL: ${VITE_CUSTOMER_APP_URL:-http://localhost:3000}
|
||||
container_name: qms-fe-admin
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${ADMIN_HOST_PORT:-5000}:80"
|
||||
|
||||
teller:
|
||||
image: ${TELLER_IMAGE:-qms-fe-teller}:${IMAGE_TAG:-local}
|
||||
build:
|
||||
context: ./teller-app
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
VITE_API_URL: ${VITE_API_URL:-http://localhost:8080}
|
||||
container_name: qms-fe-teller
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${TELLER_HOST_PORT:-3001}:80"
|
||||
Reference in New Issue
Block a user