feat(docker-compose): add helath checks
This commit is contained in:
@ -2,7 +2,7 @@ version: '2'
|
||||
|
||||
services:
|
||||
molgenis:
|
||||
image: registry.webhosting.rug.nl/molgenis/molgenis:latest
|
||||
image: registry.molgenis.org/molgenis/molgenis:latest
|
||||
ports:
|
||||
- 8080
|
||||
links:
|
||||
@ -39,11 +39,21 @@ services:
|
||||
- postgres-data
|
||||
ports:
|
||||
- 5432
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "sS", "http://localhost:8080"]
|
||||
interval: 5s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
|
||||
opencpu:
|
||||
image: registry.webhosting.rug.nl/molgenis/molgenis-opencpu:latest
|
||||
image: registry.molgenis.org/molgenis/molgenis-opencpu:latest
|
||||
ports:
|
||||
- 8004
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "sS", "http://localhost:8084"]
|
||||
interval: 5s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
|
||||
elasticsearch:
|
||||
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.1
|
||||
|
@ -51,14 +51,4 @@
|
||||
label: "Initial and maximum size:"
|
||||
required: true
|
||||
default: "2g"
|
||||
type: "string"
|
||||
|
||||
start_on_create: true
|
||||
scale: 1
|
||||
health_check:
|
||||
port: 8080
|
||||
interval: 5000
|
||||
unhealthy_threshold: 3
|
||||
request_line: 'GET / HTTP/1.0'
|
||||
healthy_threshold: 2
|
||||
response_timeout: 5000
|
||||
type: "string"
|
Reference in New Issue
Block a user