mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
18 lines
517 B
YAML
18 lines
517 B
YAML
version: '3.7'
|
|
services:
|
|
stacks-blockchain:
|
|
build:
|
|
context: ./stacks-blockchain/docker
|
|
command: stacks-node start --config=/app/config/Stacks-dev.toml
|
|
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"
|
|
volumes:
|
|
- ./stacks-blockchain/:/app/config
|
|
- ./stacks-blockchain/.chaindata:/tmp/stacks-blockchain-data
|