app-store/apps/bitcoind/docker-compose.yml
2024-03-11 21:47:44 +01:00

22 lines
515 B
YAML

version: '3.9'
services:
bitcoind:
container_name: bitcoind
image: lncm/bitcoind:v26.0
user: 0:0
volumes:
- ${APP_DATA_DIR}/data:/root/.bitcoin
ports:
- ${APP_PORT}:8333
- 8332:8332
- 28332:28332
- 28333:28333
restart: unless-stopped
stop_grace_period: 15m30s
command: >-
--dbcache=${DB_CACHE:-450}
--maxmempool=${MAX_MEMPOOL:-300}
--listen=${LISTEN:-0}
--maxconnections=${MAXPEERS:-125}
networks:
- tipi_main_network