From d1f34b77b13847e2b424b0739b988ee30756f664 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Thu, 22 Feb 2024 15:00:58 +0200 Subject: [PATCH] using specific foundry image and reformatted command arguments, previous didn't work --- docker-compose.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 000cdf2..5f7ce25 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,15 +11,15 @@ networks: services: foundry: - image: ghcr.io/foundry-rs/foundry:latest + image: ghcr.io/foundry-rs/foundry:nightly-9b73e06e1fe376738b92ae081107620291d50188 labels: com.centurylinklabs.watchtower.enable: '${WATCHTOWER_ENABLED:-false}' - command: - - anvil - - --port=8540 - - --chain-id=1337 - - --block-time=12 - - --accounts=1 + command: > + "anvil + --port=8540 + --chain-id=1337 + --block-time=12 + --accounts=1" networks: - simulation