From e42200e45d13294383c0ae3fd23cb4b7689bfd39 Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Thu, 29 May 2025 16:16:31 +0530 Subject: [PATCH 1/2] Update port mapping for multisig app --- package.json | 2 +- .../compose/docker-compose-cosmos-multisig-ui.yml | 4 ++-- .../container-build/cerc-cosmos-multisig-ui/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index cfc6a62..460685f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "test": "jest --watch", "test:ci": "jest", "build": "next build", - "start": "next start", + "start": "next start -p 7000", "format": "prettier --write --log-level warn \"./**/*.{js,jsx,mjs,ts,tsx}\"", "lint": "eslint --max-warnings 0 \"./**/*.{js,jsx,mjs,ts,tsx}\"", "lint:fix": "eslint --max-warnings 0 \"./**/*.{js,jsx,mjs,ts,tsx}\" --fix" diff --git a/stack-orchestrator/compose/docker-compose-cosmos-multisig-ui.yml b/stack-orchestrator/compose/docker-compose-cosmos-multisig-ui.yml index 550d020..8df7089 100644 --- a/stack-orchestrator/compose/docker-compose-cosmos-multisig-ui.yml +++ b/stack-orchestrator/compose/docker-compose-cosmos-multisig-ui.yml @@ -28,9 +28,9 @@ services: - ../config/cosmos-multisig-ui/db-schema.graphql:/cosmos-script/db-schema.graphql - ${CHAIN_CONFIG_PATH:-../config/cosmos-multisig-ui/network.json}:/app/public/assets/network.json ports: - - "3000" + - "7000" healthcheck: - test: ["CMD", "nc", "-vz", "127.0.0.1", "3000"] + test: ["CMD", "nc", "-vz", "127.0.0.1", "7000"] interval: 20s timeout: 5s retries: 15 diff --git a/stack-orchestrator/container-build/cerc-cosmos-multisig-ui/Dockerfile b/stack-orchestrator/container-build/cerc-cosmos-multisig-ui/Dockerfile index f18a262..64fb9a5 100644 --- a/stack-orchestrator/container-build/cerc-cosmos-multisig-ui/Dockerfile +++ b/stack-orchestrator/container-build/cerc-cosmos-multisig-ui/Dockerfile @@ -38,4 +38,4 @@ COPY . . # Install app dependencies RUN npm install --legacy-peer-deps -EXPOSE 3000 +EXPOSE 7000 -- 2.45.2 From b5baf1256154aaf066e7a56677f70f03f6b9be9c Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Fri, 30 May 2025 11:57:11 +0530 Subject: [PATCH 2/2] Update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 460685f..ba51abf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cosmos-multisig-ui", "private": true, - "version": "0.1.0", + "version": "0.1.1", "scripts": { "dev": "next dev", "test": "jest --watch", -- 2.45.2