From 4a79c5fa596a7c225c5a20eae51f5b950418e2b3 Mon Sep 17 00:00:00 2001 From: janniks Date: Tue, 23 Jan 2024 14:41:41 +0100 Subject: [PATCH] fix: update to latest node image --- docker/docker-compose.dev.stacks-blockchain.yml | 8 ++++---- stacks-blockchain/docker/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/docker-compose.dev.stacks-blockchain.yml b/docker/docker-compose.dev.stacks-blockchain.yml index 23c338e983..033d3766b4 100644 --- a/docker/docker-compose.dev.stacks-blockchain.yml +++ b/docker/docker-compose.dev.stacks-blockchain.yml @@ -1,17 +1,17 @@ version: '3.7' services: stacks-blockchain: - image: "hirosystems/stacks-api-e2e:stacks3.0-800259e" + image: 'hirosystems/stacks-api-e2e:stacks3.0-e6330cf' restart: on-failure environment: STACKS_EVENT_OBSERVER: host.docker.internal:3700 BLOCKSTACK_USE_TEST_GENESIS_CHAINSTATE: 1 NOP_BLOCKSTACK_DEBUG: 1 ports: - - "20443:20443" - - "20444:20444" + - '20443:20443' + - '20444:20444' volumes: - ../stacks-blockchain/:/app/config - ../stacks-blockchain/.chaindata:/tmp/stacks-blockchain-data extra_hosts: - - "host.docker.internal:host-gateway" # fixes `host.docker.internal` on linux hosts + - 'host.docker.internal:host-gateway' # fixes `host.docker.internal` on linux hosts diff --git a/stacks-blockchain/docker/Dockerfile b/stacks-blockchain/docker/Dockerfile index d962f5eb95..c75799770c 100644 --- a/stacks-blockchain/docker/Dockerfile +++ b/stacks-blockchain/docker/Dockerfile @@ -1,5 +1,5 @@ # Pointed to stacks-blockchain `2.1.0.0.0` git tag -FROM --platform=linux/amd64 hirosystems/stacks-api-e2e:stacks3.0-800259e as build +FROM --platform=linux/amd64 hirosystems/stacks-api-e2e:stacks3.0-e6330cf as build FROM --platform=linux/amd64 debian:bookworm