mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00

* bump mempool to v2.5.0 * bump mempool to v2.5.0 * add mempool Lightning Explorer Support just for local testing so far. Hopefully thats how it can be done. * bump mariadb to 10.11 as there is no Dockerfile folder for just 10. * fix strange docker-compose boolean problem * rpc-file-mode=0666 for c-lightning socket beware that this change is a risk when run outside a container. * hopefully fix writable cache dir error * remove mempool_api_datadir cache folder * enable lightning for gui of mempool * fix typo * try readonly.macraoon instead of admin * correct REST API URL and port * fixed LND_REST Proto to http; increased LND_TIMEOUT because of errors on RPI
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
version: '3'
|
|
|
|
# reference: https://github.com/mempool/mempool/blob/master/docker/docker-compose.yml
|
|
services:
|
|
bitcoind:
|
|
environment:
|
|
BITCOIN_EXTRA_ARGS: |
|
|
# We need to use rpcauth because we also need cookieauth. rpcpassword disabled cookie file auth.
|
|
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
|
rpcauth=mempool:d77ee0acf132038f6aaa9d4500d745ec$$72cc78dcf18191c91d10c15ff8f7c3dbbd170c4d3107cca35d71c6bf96af2ed9
|
|
mempool_web:
|
|
image: mempool/frontend:v2.5.0
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
command: "./wait-for mempool_db:3306 --timeout=720 -- nginx -g 'daemon off;'"
|
|
expose:
|
|
- "8080"
|
|
environment:
|
|
FRONTEND_HTTP_PORT: "8080"
|
|
BACKEND_MAINNET_HTTP_HOST: "mempool_api"
|
|
|
|
mempool_api:
|
|
image: mempool/backend:v2.5.0
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
command: "./wait-for-it.sh mempool_db:3306 --timeout=720 --strict -- ./start.sh"
|
|
expose:
|
|
- "8999"
|
|
environment:
|
|
MEMPOOL_BACKEND: "electrum"
|
|
MEMPOOL_CACHE_DIR: "/backend/cache"
|
|
ELECTRUM_HOST: "electrumx"
|
|
ELECTRUM_PORT: "50001"
|
|
ELECTRUM_TLS_ENABLED: "false"
|
|
CORE_RPC_HOST: "bitcoind"
|
|
CORE_RPC_PORT: "43782"
|
|
CORE_RPC_USERNAME: "mempool"
|
|
CORE_RPC_PASSWORD: "mempool"
|
|
DATABASE_ENABLED: "true"
|
|
DATABASE_HOST: "mempool_db"
|
|
DATABASE_DATABASE: "mempool"
|
|
DATABASE_USERNAME: "mempool"
|
|
DATABASE_PASSWORD: "mempool"
|
|
|
|
mempool_db:
|
|
image: mariadb:10.11
|
|
restart: on-failure
|
|
expose:
|
|
- "3306"
|
|
volumes:
|
|
- "mempool_db_datadir:/var/lib/mysql"
|
|
environment:
|
|
MYSQL_DATABASE: "mempool"
|
|
MYSQL_USER: "mempool"
|
|
MYSQL_PASSWORD: "mempool"
|
|
MYSQL_ROOT_PASSWORD: "admin"
|
|
|
|
btcpayserver:
|
|
environment:
|
|
BTCPAY_EXTERNALSERVICES: "Mempool Explorer:/mempool"
|
|
|
|
volumes:
|
|
mempool_db_datadir:
|
|
|
|
required:
|
|
- "opt-add-electrumx"
|
|
|
|
incompatible:
|
|
- pruning
|