Set custom port for running app (#3)
/ lint (push) Successful in 1m20s
/ test (push) Successful in 1m17s
/ build (push) Successful in 2m4s

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: #3
Co-authored-by: ishavenikar <ishavenikar@noreply.git.vdb.to>
Co-committed-by: ishavenikar <ishavenikar@noreply.git.vdb.to>
This commit was merged in pull request #3.
This commit is contained in:
ishavenikar
2025-05-30 06:30:12 +00:00
committed by nabarun
co-authored by IshaVenikar
parent 4282db9904
commit d2cc868e44
3 changed files with 5 additions and 5 deletions
@@ -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
@@ -38,4 +38,4 @@ COPY . .
# Install app dependencies
RUN npm install --legacy-peer-deps
EXPOSE 3000
EXPOSE 7000