Skip to content

Commit b3bb36f

Browse files
EtienneWalletclaude
andcommitted
fix(chain-simulator): force recreate containers on startup
Add --force-recreate to docker compose up to prevent explorer and lite-wallet nginx failures caused by non-idempotent entrypoint scripts accumulating duplicate location blocks across container restarts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5252502 commit b3bb36f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mxops/utils/chain_simulator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def start_chain_simulator(
277277

278278
LOGGER.info("Starting the chain simulator")
279279
process = subprocess.Popen( # nosec
280-
["docker", "compose", "-f", file_path.as_posix(), "up", "-d"],
280+
["docker", "compose", "-f", file_path.as_posix(), "up", "-d", "--force-recreate"],
281281
stdout=subprocess.PIPE,
282282
stderr=subprocess.PIPE,
283283
universal_newlines=True,

0 commit comments

Comments
 (0)