Skip to content

Commit

Permalink
Merge pull request #632 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
alexsporn authored Dec 13, 2023
2 parents f4419f4 + 37f0eb6 commit 7bc9088
Showing 1 changed file with 7 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: no
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: no
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: no
restart: "no"
depends_on:
iota-core:
condition: service_healthy
Expand Down Expand Up @@ -129,14 +129,17 @@ services:
command: >
--inx.address=iota-core:9029
--faucet.bindAddress=0.0.0.0:8091
--faucet.manaAmount=100000000
--faucet.baseTokenAmount=1000000000000
--faucet.baseTokenAmountMaxTarget=100000000000000
{% endif %}

{% if 'node-01' in inventory_hostname or 'node-02' in inventory_hostname or 'node-03' in inventory_hostname %}
inx-validator:
container_name: inx-validator
image: iotaledger/inx-validator:1.0-alpha
stop_grace_period: 1m
restart: no
restart: "no"
depends_on:
iota-core:
condition: service_started
Expand Down

0 comments on commit 7bc9088

Please sign in to comment.