Skip to content

Commit 8b8b3a9

Browse files
author
brady.ouren
committed
chore: review clean up
1 parent 455bb36 commit 8b8b3a9

File tree

5 files changed

+5
-16
lines changed

5 files changed

+5
-16
lines changed

docker/devnet/Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FROM --platform=$BUILDPLATFORM rust:1.68-alpine as clarinet-builder
1+
FROM --platform=$BUILDPLATFORM rust:alpine as clarinet-builder
22

3-
ARG CLARINET_VERSION=v2.8.0
43
WORKDIR /usr/src/
54

65
RUN apk add --no-cache \
@@ -12,7 +11,7 @@ RUN apk add --no-cache \
1211
# Build Clarinet from source
1312
RUN git clone https://github.com/hirosystems/clarinet.git && \
1413
cd clarinet && \
15-
git checkout 1717a4e && \
14+
git checkout main && \
1615
cargo build --release
1716

1817
FROM --platform=$BUILDPLATFORM docker:dind

docker/devnet/Makefile

-7
This file was deleted.

docker/devnet/deployments/default.devnet-plan.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ id: 0
33
name: Devnet deployment
44
network: devnet
55
stacks-node: "http://localhost:20443"
6-
bitcoin-node: "http://devnet:devnet@localhost:18453"
6+
bitcoin-node: "http://devnet:devnet@localhost:18443"
77
plan:
88
batches: []

docker/devnet/docker-compose.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ services:
1717
context: .
1818
# platform: ${BUILDPLATFORM:-linux/amd64}
1919
ports:
20-
- "3700:3700"
2120
- "20443:20443"
2221
- '20444:20444'
2322
- "18443:18443"
@@ -27,8 +26,6 @@ services:
2726
- ../stacks-blockchain/:/app/config
2827
- ../stacks-blockchain/.chaindata:/tmp/stacks-blockchain-data
2928
environment:
30-
- CLARINET_VERSION=v2.8.0
31-
- STACKS_EVENT_OBSERVER=host.docker.internal:3700
3229
- PG_DATABASE=stacks_api
3330
extra_hosts:
3431
- 'host.docker.internal:host-gateway' # fixes `host.docker.internal` on linux hosts

docker/devnet/settings/Devnet.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ disable_postgres = false
8080
# disable_subnet_api = false
8181
disable_bitcoin_explorer = true
8282
# working_dir = "tmp/devnet"
83-
stacks_node_events_observers = ["host.docker.internal:3700"]
83+
# stacks_node_events_observers = ["host.docker.internal:3700"]
8484
# miner_mnemonic = "fragile loan twenty basic net assault jazz absorb diet talk art shock innocent float punch travel gadget embrace caught blossom hockey surround initial reduce"
8585
# miner_derivation_path = "m/44'/5757'/0'/0/0"
8686
# faucet_mnemonic = "shadow private easily thought say logic fault paddle word top book during ignore notable orange flight clock image wealth health outside kitten belt reform"
@@ -94,7 +94,7 @@ bitcoin_node_password = "devnet"
9494
stacks_node_rpc_port = 20443
9595
# stacks_node_p2p_port = 20444
9696
# stacks_api_port = 3999
97-
stacks_api_events_port = 3700
97+
# stacks_api_events_port = 3700
9898
# bitcoin_explorer_port = 8001
9999
# stacks_explorer_port = 8000
100100
# postgres_port = 5432

0 commit comments

Comments
 (0)