Skip to content

Commit

Permalink
Updated health check ports
Browse files Browse the repository at this point in the history
  • Loading branch information
aminlatifi committed Nov 6, 2024
1 parent e98251d commit 22c329d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ services:
- GRAPHQL_MODE=true
restart: always
labels:
- "autoheal=true"
- 'autoheal=true'
volumes:
- ./config:/usr/src/app/config
- ./config:/usr/src/app/build/config
- ./logs-graph-ql:/usr/src/app/logs
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4000/health"]
test: ['CMD', 'curl', '-f', 'http://localhost:4001/health']
interval: 30s
timeout: 10s
retries: 5
Expand All @@ -35,13 +35,13 @@ services:
- GRAPHQL_MODE=true
restart: always
labels:
- "autoheal=true"
- 'autoheal=true'
volumes:
- ./config:/usr/src/app/config
- ./config:/usr/src/app/build/config
- ./logs-graph-ql:/usr/src/app/logs
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4000/health"]
test: ['CMD', 'curl', '-f', 'http://localhost:4002/health']
interval: 30s
timeout: 10s
retries: 5
Expand All @@ -61,13 +61,13 @@ services:
- GRAPHQL_MODE=true
restart: always
labels:
- "autoheal=true"
- 'autoheal=true'
volumes:
- ./config:/usr/src/app/config
- ./config:/usr/src/app/build/config
- ./logs-graph-ql:/usr/src/app/logs
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4000/health"]
test: ['CMD', 'curl', '-f', 'http://localhost:4003/health']
interval: 30s
timeout: 10s
retries: 5
Expand Down Expand Up @@ -147,4 +147,4 @@ volumes:
networks:
qacc:
name: qacc-be_qacc
external: true
external: true

0 comments on commit 22c329d

Please sign in to comment.