mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-16 12:06:43 +08:00
17 lines
401 B
YAML
17 lines
401 B
YAML
# This docker-compose file is for spinning up a blockstack-core node
|
|
version: '2'
|
|
services:
|
|
blockstack-core:
|
|
image: 'quay.io/blockstack/blockstack-core:master'
|
|
command: 'blockstack-core start --foreground --debug'
|
|
volumes:
|
|
- './data/core/server/:/root/.blockstack-server/'
|
|
restart: always
|
|
ports:
|
|
- "6264:6264"
|
|
networks:
|
|
- "api"
|
|
|
|
networks:
|
|
api: null
|