umbrel-apps/btcpay-server/docker-compose.yml

69 lines
3.0 KiB
YAML
Raw Normal View History

2022-04-20 20:32:07 +00:00
version: "3.7"
services:
2022-05-16 13:30:51 +00:00
app_proxy:
environment:
APP_HOST: btcpay-server_web_1
APP_PORT: 3003
PROXY_AUTH_ADD: "false"
2022-05-16 13:30:51 +00:00
2022-04-20 20:32:07 +00:00
nbxplorer:
2024-07-25 05:43:50 +00:00
image: nicolasdorier/nbxplorer:2.5.5@sha256:bfeba69f30b023b56d376a2c8794434d918ababe608e0499b62fc7f9331df7a7
2022-04-20 20:32:07 +00:00
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
depends_on: [postgres]
2022-04-20 20:32:07 +00:00
volumes:
- ${APP_DATA_DIR}/data/nbxplorer:/data
2022-04-20 20:32:07 +00:00
environment:
NBXPLORER_DATADIR: "/data"
NBXPLORER_NETWORK: "$APP_BITCOIN_NETWORK"
NBXPLORER_BIND: 0.0.0.0:32838
NBXPLORER_CHAINS: "btc"
NBXPLORER_SIGNALFILEDIR: "/data"
NBXPLORER_BTCRPCURL: "http://$APP_BITCOIN_NODE_IP:$APP_BITCOIN_RPC_PORT"
NBXPLORER_BTCNODEENDPOINT: $APP_BITCOIN_NODE_IP:$APP_BITCOIN_P2P_PORT
NBXPLORER_BTCRPCUSER: $APP_BITCOIN_RPC_USER
NBXPLORER_BTCRPCPASSWORD: $APP_BITCOIN_RPC_PASS
NBXPLORER_POSTGRES: User ID=postgres;Host=btcpay-server_postgres_1;Port=5432;Application Name=nbxplorer;MaxPoolSize=20;Database=nbxplorer$APP_BITCOIN_NETWORK
NBXPLORER_BTCHASTXINDEX: 1
2022-04-20 20:32:07 +00:00
web:
2024-07-25 05:43:50 +00:00
image: btcpayserver/btcpayserver:1.13.5@sha256:c36e08c9162a268d3c4ba946c03b506738ebc1bd25a7a817c9b1fdf3daed50e8
2022-04-20 20:32:07 +00:00
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
depends_on: [nbxplorer, postgres]
entrypoint: ["dotnet", "BTCPayServer.dll"]
2022-04-20 20:32:07 +00:00
volumes:
- ${APP_DATA_DIR}/data/btcpay:/data
- ${APP_DATA_DIR}/data/nbxplorer:/data/.nbxplorer
- ${APP_LIGHTNING_NODE_DATA_DIR}:/lnd:ro
2022-04-20 20:32:07 +00:00
environment:
HOME: "/data"
BTCPAY_DATADIR: "/data"
BTCPAY_PLUGINDIR: "/data/plugins"
BTCPAY_DOCKERDEPLOYMENT: "false"
BTCPAY_POSTGRES: "User ID=postgres;Host=btcpay-server_postgres_1;Port=5432;Database=btcpayserver$APP_BITCOIN_NETWORK"
BTCPAY_NETWORK: "$APP_BITCOIN_NETWORK"
BTCPAY_BIND: 0.0.0.0:3003
BTCPAY_CHAINS: "btc"
BTCPAY_BTCEXPLORERURL: "http://btcpay-server_nbxplorer_1:32838"
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=https://$APP_LIGHTNING_NODE_IP:$APP_LIGHTNING_NODE_REST_PORT/;macaroonfilepath=/lnd/data/chain/bitcoin/$APP_BITCOIN_NETWORK/admin.macaroon;allowinsecure=true"
BTCPAY_SOCKSENDPOINT: $TOR_PROXY_IP:$TOR_PROXY_PORT
BTCPAY_EXPLORERPOSTGRES: User ID=postgres;Host=btcpay-server_postgres_1;Port=5432;Application Name=nbxplorer;MaxPoolSize=20;Database=nbxplorer$APP_BITCOIN_NETWORK
BTCPAY_TORSERVICES: "btcpayserver:$APP_HIDDEN_SERVICE"
2022-04-20 20:32:07 +00:00
postgres:
image: btcpayserver/postgres:13.13@sha256:20d090860c929d4e86dc1068ad542cbae3e7ab3bcbc5c0c8a8b57ec91a5cbe3c
2022-04-20 20:32:07 +00:00
# This needs to run as root for migrations to succeed
# user: "1000:1000"
restart: on-failure
# https://github.com/btcpayserver/btcpayserver-docker/commit/a65e7db6851092c75c5ac6c091a5f36ccc5fc26e
command: ["-c", "random_page_cost=1.0", "-c", "shared_preload_libraries=pg_stat_statements"]
2022-04-20 20:32:07 +00:00
stop_grace_period: 1m
environment:
POSTGRES_HOST_AUTH_METHOD: trust
2022-04-20 20:32:07 +00:00
volumes:
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data