Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions core/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- ../../config/core-config-envs
logging:
driver: "json-file"
restart: on-failure
restart: unless-stopped
depends_on:
glowroot-central:
condition: service_started
Expand All @@ -25,7 +25,7 @@ services:
ports:
- "${RABBITMQ_PORT}:5672"
- "${RABBITMQ_ADMIN_PORT}:15672"
restart: on-failure
restart: unless-stopped
healthcheck:
# rabbitmq server crashes if any rabbitmq-diagnostics cmd is run very soon
# after starting, so can't check too aggressively here
Expand Down Expand Up @@ -67,6 +67,7 @@ services:
- portal-build-secrets
env_file:
- ../../config/portal-config-envs
restart: unless-stopped
ports:
- "${PORTAL_PORT}:80"

Expand Down
4 changes: 3 additions & 1 deletion hl7-reader/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ services:
- ../../config/hl7-reader-config-envs
logging:
driver: "json-file"
restart: "no"
# This service can legitimately exit 0 when it reaches
# the end of its configured run, so shouldn't restart in that case.
restart: on-failure
depends_on:
# Uses services from core, orchestrate using the EMAP setup package
- glowroot-central
Expand Down
2 changes: 1 addition & 1 deletion monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ services:
- ../../config/streamlit-config-envs
logging:
driver: "json-file"
restart: "no"
restart: unless-stopped
2 changes: 1 addition & 1 deletion waveform-generator/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ services:
- ../../config/waveform-generator-config-envs
logging:
driver: "json-file"
restart: "no"
restart: on-failure
depends_on:
- waveform-reader
2 changes: 1 addition & 1 deletion waveform-reader/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- "7777:7777"
logging:
driver: "json-file"
restart: "no"
restart: on-failure
volumes:
- ../../waveform-test-data:/waveform-test-data:ro
depends_on:
Expand Down