Skip to content

Commit

Permalink
Merge pull request #631 from iotaledger/fix/no-feature-network-restarts
Browse files Browse the repository at this point in the history
Avoid restart of nodes and INX apps to catch errors
  • Loading branch information
karimodm authored Dec 13, 2023
2 parents f421d40 + ea8b02b commit f4419f4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
image: {{iota_core_docker_image_repo}}:{{iota_core_docker_image_tag}}
container_name: iota-core
stop_grace_period: 1m
restart: unless-stopped
restart: no
ulimits:
nofile:
soft: 16384
Expand Down Expand Up @@ -64,7 +64,7 @@ services:
container_name: inx-indexer
image: iotaledger/inx-indexer:2.0-alpha
stop_grace_period: 1m
restart: unless-stopped
restart: no
depends_on:
iota-core:
condition: service_healthy
Expand All @@ -83,7 +83,7 @@ services:
container_name: inx-mqtt
image: iotaledger/inx-mqtt:2.0-alpha
stop_grace_period: 1m
restart: unless-stopped
restart: no
depends_on:
iota-core:
condition: service_healthy
Expand Down Expand Up @@ -136,7 +136,7 @@ services:
container_name: inx-validator
image: iotaledger/inx-validator:1.0-alpha
stop_grace_period: 1m
restart: unless-stopped
restart: no
depends_on:
iota-core:
condition: service_started
Expand Down

0 comments on commit f4419f4

Please sign in to comment.