mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-17 21:31:42 +01:00
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
bitcoin-regtest:
|
|
container_name: bitcoin-regtest
|
|
build:
|
|
context: ./docker/bitcoin
|
|
dockerfile: Dockerfile
|
|
restart: unless-stopped
|
|
stop_grace_period: 30s
|
|
networks:
|
|
- bitcoin-regtest
|
|
ports:
|
|
- "127.0.0.1:28332:28332/tcp"
|
|
- "0.0.0.0:28333:28333/tcp"
|
|
command: >
|
|
-printtoconsole
|
|
-datadir=/app/data
|
|
-regtest
|
|
-blockversion=536870912
|
|
volumes:
|
|
- "./data/regtest/bitcoin:/app/data"
|
|
- "./bitcoin-regtest.conf:/app/data/bitcoin.conf:ro"
|
|
|
|
public-pool-regtest:
|
|
container_name: public-pool-regtest
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
restart: unless-stopped
|
|
stop_grace_period: 30s
|
|
networks:
|
|
- bitcoin-regtest
|
|
ports:
|
|
- "0.0.0.0:23333:23333/tcp"
|
|
- "127.0.0.1:23334:23334/tcp"
|
|
volumes:
|
|
- "./data/regtest/public-pool:/public-pool/DB"
|
|
- "./public-pool-regtest.env:/public-pool/.env:ro"
|
|
environment:
|
|
- NODE_ENV=production
|
|
|
|
networks:
|
|
bitcoin-regtest:
|