2022-02-10 04:25:14 +01:00
|
|
|
version: "3"
|
2017-09-28 09:35:29 +02:00
|
|
|
|
2017-12-13 07:49:19 +01:00
|
|
|
# Run `docker-compose up dev` for bootstrapping your development environment
|
2018-03-17 07:45:44 +01:00
|
|
|
# Doing so will expose NBXplorer, Bitcoind RPC and postgres port to the host so that tests can Run,
|
2019-01-05 10:18:01 +01:00
|
|
|
# The Visual Studio launch setting `Docker-regtest` is configured to use this environment.
|
2017-09-28 09:35:29 +02:00
|
|
|
services:
|
2017-09-28 11:49:24 +02:00
|
|
|
|
2017-10-02 17:41:03 +02:00
|
|
|
tests:
|
2017-09-28 11:49:24 +02:00
|
|
|
build:
|
2017-10-02 17:41:03 +02:00
|
|
|
context: ..
|
|
|
|
dockerfile: BTCPayServer.Tests/Dockerfile
|
2020-07-29 13:18:01 +02:00
|
|
|
args:
|
|
|
|
CONFIGURATION_NAME: Release
|
2017-09-28 11:49:24 +02:00
|
|
|
environment:
|
2024-04-30 11:29:05 +02:00
|
|
|
TESTS_EXPERIMENTALV2_CONFIRM: "true"
|
2018-01-12 03:54:57 +01:00
|
|
|
TESTS_BTCRPCCONNECTION: server=http://bitcoind:43782;ceiwHEbqWI83:DwubwWsoo3
|
|
|
|
TESTS_BTCNBXPLORERURL: http://nbxplorer:32838/
|
2018-10-27 16:15:21 +02:00
|
|
|
TESTS_DB: "Postgres"
|
2022-01-15 06:15:03 +01:00
|
|
|
TESTS_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=btcpayserver
|
2022-07-05 07:39:50 +02:00
|
|
|
TESTS_EXPLORER_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=nbxplorer
|
2017-10-12 09:33:53 +02:00
|
|
|
TESTS_HOSTNAME: tests
|
2021-07-08 12:53:47 +02:00
|
|
|
TESTS_RUN_EXTERNAL_INTEGRATION: ${TESTS_RUN_EXTERNAL_INTEGRATION:-"false"}
|
2019-04-22 10:19:04 +02:00
|
|
|
TESTS_AzureBlobStorageConnectionString: ${TESTS_AzureBlobStorageConnectionString:-none}
|
2018-12-18 14:35:58 +01:00
|
|
|
TEST_MERCHANTLIGHTNINGD: "type=clightning;server=unix://etc/merchant_lightningd_datadir/lightning-rpc"
|
|
|
|
TEST_CUSTOMERLIGHTNINGD: "type=clightning;server=unix://etc/customer_lightningd_datadir/lightning-rpc"
|
2023-11-21 10:55:02 +01:00
|
|
|
TEST_MERCHANTLND: "http://merchant_lnd:8080/"
|
2018-03-20 16:31:19 +01:00
|
|
|
TESTS_INCONTAINER: "true"
|
2019-09-06 09:59:20 +02:00
|
|
|
TESTS_SSHCONNECTION: "root@sshd:22"
|
2019-09-06 09:51:49 +02:00
|
|
|
TESTS_SSHPASSWORD: ""
|
|
|
|
TESTS_SSHKEYFILE: ""
|
2020-04-08 15:40:41 +02:00
|
|
|
TESTS_SOCKSENDPOINT: "tor:9050"
|
2017-10-12 09:33:53 +02:00
|
|
|
expose:
|
|
|
|
- "80"
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-02-23 07:21:42 +01:00
|
|
|
- dev
|
2021-09-22 14:31:44 +02:00
|
|
|
- selenium
|
2022-02-10 04:25:14 +01:00
|
|
|
extra_hosts:
|
2017-10-12 09:33:53 +02:00
|
|
|
- "tests:127.0.0.1"
|
2023-04-10 09:38:49 +02:00
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
custom:
|
|
|
|
ipv4_address: 172.23.0.18
|
2018-03-20 16:31:19 +01:00
|
|
|
volumes:
|
2019-09-06 09:51:49 +02:00
|
|
|
- "sshd_datadir:/root/.ssh"
|
2018-03-20 16:31:19 +01:00
|
|
|
- "customer_lightningd_datadir:/etc/customer_lightningd_datadir"
|
|
|
|
- "merchant_lightningd_datadir:/etc/merchant_lightningd_datadir"
|
2017-09-28 11:49:24 +02:00
|
|
|
|
2017-12-13 07:49:19 +01:00
|
|
|
# The dev container is not actually used, it is just handy to run `docker-compose up dev` to start all services
|
2022-02-10 04:25:14 +01:00
|
|
|
dev:
|
2019-09-10 06:02:52 +02:00
|
|
|
image: alpine:3.7
|
|
|
|
command: [ "/bin/sh", "-c", "trap : TERM INT; while :; do echo Ready to code and debug like a rockstar!!!; sleep 2073600; done & wait" ]
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-01-12 03:54:57 +01:00
|
|
|
- nbxplorer
|
2018-01-08 17:56:37 +01:00
|
|
|
- postgres
|
2018-03-17 11:26:30 +01:00
|
|
|
- customer_lightningd
|
|
|
|
- merchant_lightningd
|
2018-05-11 23:59:24 +02:00
|
|
|
- customer_lnd
|
|
|
|
- merchant_lnd
|
2019-09-06 09:51:49 +02:00
|
|
|
- sshd
|
2020-04-08 15:40:41 +02:00
|
|
|
- tor
|
2019-09-06 09:51:49 +02:00
|
|
|
|
|
|
|
sshd:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: sshd.Dockerfile
|
|
|
|
ports:
|
|
|
|
- "21622:22"
|
|
|
|
expose:
|
|
|
|
- 22
|
|
|
|
volumes:
|
|
|
|
- "sshd_datadir:/root/.ssh"
|
2018-05-11 23:59:24 +02:00
|
|
|
|
2022-02-10 04:25:14 +01:00
|
|
|
devlnd:
|
2023-12-12 05:08:40 +01:00
|
|
|
image: btcpayserver/bitcoin:26.0
|
2018-05-11 23:59:24 +02:00
|
|
|
environment:
|
2018-10-18 18:35:07 +02:00
|
|
|
BITCOIN_NETWORK: regtest
|
2021-01-26 13:01:32 +01:00
|
|
|
BITCOIN_WALLETDIR: "/data/wallets"
|
2018-05-11 23:59:24 +02:00
|
|
|
BITCOIN_EXTRA_ARGS: |
|
2018-10-18 18:35:07 +02:00
|
|
|
deprecatedrpc=signrawtransaction
|
2018-05-11 23:59:24 +02:00
|
|
|
connect=bitcoind:39388
|
2020-09-24 08:38:51 +02:00
|
|
|
fallbackfee=0.0002
|
2023-05-16 02:17:21 +02:00
|
|
|
rpcallowip=0.0.0.0/0
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-05-11 23:59:24 +02:00
|
|
|
- nbxplorer
|
|
|
|
- postgres
|
|
|
|
- customer_lnd
|
|
|
|
- merchant_lnd
|
2023-05-16 02:17:21 +02:00
|
|
|
|
2021-09-22 14:31:44 +02:00
|
|
|
selenium:
|
2022-05-06 05:07:53 +02:00
|
|
|
image: selenium/standalone-chrome:101.0
|
2023-04-10 09:38:49 +02:00
|
|
|
extra_hosts:
|
2023-05-16 02:17:21 +02:00
|
|
|
- "tests:172.23.0.18"
|
2021-09-22 14:31:44 +02:00
|
|
|
expose:
|
|
|
|
- "4444"
|
2023-05-16 02:17:21 +02:00
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
custom:
|
|
|
|
|
2018-01-12 03:54:57 +01:00
|
|
|
nbxplorer:
|
2024-01-18 09:21:15 +01:00
|
|
|
image: nicolasdorier/nbxplorer:2.5.0
|
2018-10-27 16:14:26 +02:00
|
|
|
restart: unless-stopped
|
2017-10-02 17:41:03 +02:00
|
|
|
ports:
|
|
|
|
- "32838:32838"
|
2022-02-10 04:25:14 +01:00
|
|
|
expose:
|
2017-09-28 11:49:24 +02:00
|
|
|
- "32838"
|
2017-09-28 09:35:29 +02:00
|
|
|
environment:
|
2019-01-05 10:18:01 +01:00
|
|
|
NBXPLORER_NETWORK: regtest
|
2020-07-29 12:36:23 +02:00
|
|
|
NBXPLORER_CHAINS: "btc"
|
2018-01-12 03:54:57 +01:00
|
|
|
NBXPLORER_BTCRPCURL: http://bitcoind:43782/
|
|
|
|
NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
|
|
|
|
NBXPLORER_BTCRPCUSER: ceiwHEbqWI83
|
|
|
|
NBXPLORER_BTCRPCPASSWORD: DwubwWsoo3
|
2017-09-28 11:49:24 +02:00
|
|
|
NBXPLORER_BIND: 0.0.0.0:32838
|
2020-01-18 08:20:03 +01:00
|
|
|
NBXPLORER_MINGAPSIZE: 5
|
|
|
|
NBXPLORER_MAXGAPSIZE: 10
|
2017-11-06 09:31:02 +01:00
|
|
|
NBXPLORER_VERBOSE: 1
|
2022-04-05 07:46:42 +02:00
|
|
|
NBXPLORER_POSTGRES: User ID=postgres;Include Error Detail=true;Host=postgres;Port=5432;Database=nbxplorer
|
2021-11-26 10:34:40 +01:00
|
|
|
NBXPLORER_EXPOSERPC: 1
|
2017-09-28 09:35:29 +02:00
|
|
|
NBXPLORER_NOAUTH: 1
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2017-09-28 09:35:29 +02:00
|
|
|
- bitcoind
|
2017-12-02 17:56:26 +01:00
|
|
|
|
2017-09-28 09:35:29 +02:00
|
|
|
bitcoind:
|
2018-12-20 13:20:30 +01:00
|
|
|
restart: unless-stopped
|
2023-12-12 05:08:40 +01:00
|
|
|
image: btcpayserver/bitcoin:26.0
|
2017-09-28 09:35:29 +02:00
|
|
|
environment:
|
2019-01-05 10:18:01 +01:00
|
|
|
BITCOIN_NETWORK: regtest
|
2021-01-26 13:01:32 +01:00
|
|
|
BITCOIN_WALLETDIR: "/data/wallets"
|
2018-12-20 13:20:30 +01:00
|
|
|
BITCOIN_EXTRA_ARGS: |-
|
2017-11-27 09:01:11 +01:00
|
|
|
rpcuser=ceiwHEbqWI83
|
|
|
|
rpcpassword=DwubwWsoo3
|
2019-05-03 04:10:01 +02:00
|
|
|
rpcport=43782
|
2019-05-03 04:04:19 +02:00
|
|
|
rpcbind=0.0.0.0:43782
|
2021-01-26 13:01:32 +01:00
|
|
|
rpcallowip=0.0.0.0/0
|
2017-11-27 09:01:11 +01:00
|
|
|
port=39388
|
|
|
|
whitelist=0.0.0.0/0
|
2018-05-12 07:19:26 +02:00
|
|
|
zmqpubrawblock=tcp://0.0.0.0:28332
|
2018-09-28 10:07:58 +02:00
|
|
|
zmqpubrawtx=tcp://0.0.0.0:28333
|
2018-12-20 13:34:09 +01:00
|
|
|
deprecatedrpc=signrawtransaction
|
2020-09-24 08:38:51 +02:00
|
|
|
fallbackfee=0.0002
|
2022-02-10 04:25:14 +01:00
|
|
|
ports:
|
2018-01-08 17:56:37 +01:00
|
|
|
- "43782:43782"
|
2020-05-07 22:37:10 +02:00
|
|
|
- "39388:39388"
|
2018-01-08 17:56:37 +01:00
|
|
|
expose:
|
|
|
|
- "43782" # RPC
|
|
|
|
- "39388" # P2P
|
2018-10-02 12:33:25 +02:00
|
|
|
- "28332" # ZMQ
|
|
|
|
- "28333" # ZMQ
|
2018-02-23 07:21:42 +01:00
|
|
|
volumes:
|
|
|
|
- "bitcoin_datadir:/data"
|
|
|
|
|
2018-03-17 11:26:30 +01:00
|
|
|
customer_lightningd:
|
2024-04-15 11:22:30 +02:00
|
|
|
image: btcpayserver/lightning:v24.02.2
|
2018-11-06 07:38:07 +01:00
|
|
|
stop_signal: SIGKILL
|
2018-10-27 16:14:26 +02:00
|
|
|
restart: unless-stopped
|
2022-02-10 04:25:14 +01:00
|
|
|
environment:
|
2018-03-20 17:10:10 +01:00
|
|
|
EXPOSE_TCP: "true"
|
2019-08-17 08:25:00 +02:00
|
|
|
LIGHTNINGD_CHAIN: "btc"
|
2019-08-17 08:35:41 +02:00
|
|
|
LIGHTNINGD_NETWORK: "regtest"
|
2018-03-17 11:26:30 +01:00
|
|
|
LIGHTNINGD_OPT: |
|
2024-04-15 11:22:30 +02:00
|
|
|
developer
|
2018-03-17 11:26:30 +01:00
|
|
|
bitcoin-datadir=/etc/bitcoin
|
|
|
|
bitcoin-rpcconnect=bitcoind
|
2022-12-06 14:15:06 +01:00
|
|
|
announce-addr=customer_lightningd:9735
|
2018-03-17 11:26:30 +01:00
|
|
|
log-level=debug
|
2019-06-03 08:53:26 +02:00
|
|
|
funding-confirms=1
|
2019-10-29 08:46:10 +01:00
|
|
|
dev-fast-gossip
|
2018-08-28 11:06:07 +02:00
|
|
|
dev-bitcoind-poll=1
|
2018-03-17 11:26:30 +01:00
|
|
|
ports:
|
|
|
|
- "30992:9835" # api port
|
|
|
|
expose:
|
|
|
|
- "9735" # server port
|
|
|
|
- "9835" # api port
|
|
|
|
volumes:
|
|
|
|
- "bitcoin_datadir:/etc/bitcoin"
|
|
|
|
- "customer_lightningd_datadir:/root/.lightning"
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-03-17 11:26:30 +01:00
|
|
|
- bitcoind
|
|
|
|
|
|
|
|
merchant_lightningd:
|
2024-04-15 11:22:30 +02:00
|
|
|
image: btcpayserver/lightning:v24.02.2
|
2018-11-06 07:38:07 +01:00
|
|
|
stop_signal: SIGKILL
|
2022-02-10 04:25:14 +01:00
|
|
|
environment:
|
2018-03-20 17:10:10 +01:00
|
|
|
EXPOSE_TCP: "true"
|
2019-08-17 08:25:00 +02:00
|
|
|
LIGHTNINGD_CHAIN: "btc"
|
|
|
|
LIGHTNINGD_NETWORK: "regtest"
|
2018-03-17 07:45:44 +01:00
|
|
|
LIGHTNINGD_OPT: |
|
2024-04-15 11:22:30 +02:00
|
|
|
developer
|
2018-03-17 07:45:44 +01:00
|
|
|
bitcoin-datadir=/etc/bitcoin
|
|
|
|
bitcoin-rpcconnect=bitcoind
|
2022-12-06 14:15:06 +01:00
|
|
|
announce-addr=merchant_lightningd:9735
|
2019-06-03 08:53:26 +02:00
|
|
|
funding-confirms=1
|
2018-03-17 07:45:44 +01:00
|
|
|
log-level=debug
|
2019-10-29 08:46:10 +01:00
|
|
|
dev-fast-gossip
|
|
|
|
dev-bitcoind-poll=1
|
2018-02-23 07:21:42 +01:00
|
|
|
ports:
|
2018-03-17 11:26:30 +01:00
|
|
|
- "30993:9835" # api port
|
2018-02-23 07:21:42 +01:00
|
|
|
expose:
|
|
|
|
- "9735" # server port
|
2018-03-17 07:45:44 +01:00
|
|
|
- "9835" # api port
|
|
|
|
volumes:
|
|
|
|
- "bitcoin_datadir:/etc/bitcoin"
|
2018-03-17 11:26:30 +01:00
|
|
|
- "merchant_lightningd_datadir:/root/.lightning"
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-03-17 07:45:44 +01:00
|
|
|
- bitcoind
|
2018-01-08 17:56:37 +01:00
|
|
|
|
2017-09-28 09:35:29 +02:00
|
|
|
postgres:
|
2021-09-29 06:16:53 +02:00
|
|
|
image: postgres:13.4
|
|
|
|
environment:
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2017-10-02 17:41:03 +02:00
|
|
|
ports:
|
2017-11-01 10:17:39 +01:00
|
|
|
- "39372:5432"
|
2017-12-13 07:49:19 +01:00
|
|
|
expose:
|
|
|
|
- "5432"
|
2018-02-23 07:21:42 +01:00
|
|
|
|
2018-05-11 23:59:24 +02:00
|
|
|
merchant_lnd:
|
2024-02-16 15:43:51 +01:00
|
|
|
image: btcpayserver/lnd:v0.17.4-beta
|
2018-10-27 16:14:26 +02:00
|
|
|
restart: unless-stopped
|
2018-04-29 09:52:33 +02:00
|
|
|
environment:
|
2018-07-10 12:33:54 +02:00
|
|
|
LND_CHAIN: "btc"
|
2019-01-05 10:18:01 +01:00
|
|
|
LND_ENVIRONMENT: "regtest"
|
2018-12-20 13:20:30 +01:00
|
|
|
LND_EXPLORERURL: "http://nbxplorer:32838/"
|
2021-02-01 07:55:13 +01:00
|
|
|
LND_REST_LISTEN_HOST: http://merchant_lnd:8080
|
2018-07-10 12:33:54 +02:00
|
|
|
LND_EXTRA_ARGS: |
|
2021-02-01 07:55:13 +01:00
|
|
|
restlisten=merchant_lnd:8080
|
2018-12-20 13:20:30 +01:00
|
|
|
rpclisten=127.0.0.1:10008
|
2021-02-01 07:55:13 +01:00
|
|
|
rpclisten=merchant_lnd:10009
|
2018-07-10 12:33:54 +02:00
|
|
|
bitcoin.node=bitcoind
|
|
|
|
bitcoind.rpchost=bitcoind:43782
|
2021-02-01 07:55:13 +01:00
|
|
|
bitcoind.rpcuser=ceiwHEbqWI83
|
|
|
|
bitcoind.rpcpass=DwubwWsoo3
|
2018-09-28 10:07:58 +02:00
|
|
|
bitcoind.zmqpubrawblock=tcp://bitcoind:28332
|
|
|
|
bitcoind.zmqpubrawtx=tcp://bitcoind:28333
|
2018-07-10 12:33:54 +02:00
|
|
|
externalip=merchant_lnd:9735
|
2019-06-03 08:51:13 +02:00
|
|
|
bitcoin.defaultchanconfs=1
|
2018-07-10 12:33:54 +02:00
|
|
|
no-macaroons=1
|
|
|
|
debuglevel=debug
|
2018-08-28 11:13:28 +02:00
|
|
|
trickledelay=1000
|
2021-02-01 07:55:13 +01:00
|
|
|
no-rest-tls=1
|
2018-04-29 09:52:33 +02:00
|
|
|
ports:
|
2020-06-07 08:24:30 +02:00
|
|
|
- "35531:8080"
|
2022-05-19 16:58:04 +02:00
|
|
|
- "53280:10009"
|
2018-05-11 23:59:24 +02:00
|
|
|
expose:
|
2022-02-10 04:25:14 +01:00
|
|
|
- "8080"
|
2018-05-12 07:19:26 +02:00
|
|
|
- "9735"
|
2022-02-10 04:25:14 +01:00
|
|
|
- "10009"
|
2018-05-11 23:59:24 +02:00
|
|
|
volumes:
|
2018-07-10 12:33:54 +02:00
|
|
|
- "merchant_lnd_datadir:/data"
|
|
|
|
- "bitcoin_datadir:/deps/.bitcoin"
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-05-11 23:59:24 +02:00
|
|
|
- bitcoind
|
|
|
|
|
|
|
|
customer_lnd:
|
2024-02-16 15:43:51 +01:00
|
|
|
image: btcpayserver/lnd:v0.17.4-beta
|
2018-10-27 16:14:26 +02:00
|
|
|
restart: unless-stopped
|
2018-05-11 23:59:24 +02:00
|
|
|
environment:
|
2018-07-10 12:33:54 +02:00
|
|
|
LND_CHAIN: "btc"
|
2019-01-05 10:18:01 +01:00
|
|
|
LND_ENVIRONMENT: "regtest"
|
2018-12-20 13:20:30 +01:00
|
|
|
LND_EXPLORERURL: "http://nbxplorer:32838/"
|
2021-02-01 07:55:13 +01:00
|
|
|
LND_REST_LISTEN_HOST: http://customer_lnd:8080
|
2018-07-10 12:33:54 +02:00
|
|
|
LND_EXTRA_ARGS: |
|
2021-02-01 07:55:13 +01:00
|
|
|
restlisten=customer_lnd:8080
|
2018-12-20 13:20:30 +01:00
|
|
|
rpclisten=127.0.0.1:10008
|
2021-02-01 07:55:13 +01:00
|
|
|
rpclisten=customer_lnd:10009
|
2018-07-10 12:33:54 +02:00
|
|
|
bitcoin.node=bitcoind
|
|
|
|
bitcoind.rpchost=bitcoind:43782
|
2021-02-01 07:55:13 +01:00
|
|
|
bitcoind.rpcuser=ceiwHEbqWI83
|
|
|
|
bitcoind.rpcpass=DwubwWsoo3
|
2018-09-28 10:07:58 +02:00
|
|
|
bitcoind.zmqpubrawblock=tcp://bitcoind:28332
|
|
|
|
bitcoind.zmqpubrawtx=tcp://bitcoind:28333
|
2022-02-10 04:25:14 +01:00
|
|
|
externalip=customer_lnd:9735
|
2019-06-03 08:51:13 +02:00
|
|
|
bitcoin.defaultchanconfs=1
|
2018-07-10 12:33:54 +02:00
|
|
|
no-macaroons=1
|
|
|
|
debuglevel=debug
|
2018-08-28 11:13:28 +02:00
|
|
|
trickledelay=1000
|
2021-02-01 07:55:13 +01:00
|
|
|
no-rest-tls=1
|
2018-05-11 23:59:24 +02:00
|
|
|
ports:
|
2020-06-07 08:24:30 +02:00
|
|
|
- "35532:8080"
|
2018-05-11 23:59:24 +02:00
|
|
|
expose:
|
|
|
|
- "8080"
|
2022-02-10 04:25:14 +01:00
|
|
|
- "9735"
|
2018-05-11 23:59:24 +02:00
|
|
|
- "10009"
|
2018-04-29 09:52:33 +02:00
|
|
|
volumes:
|
2018-05-11 23:59:24 +02:00
|
|
|
- "customer_lnd_datadir:/root/.lnd"
|
2018-07-10 12:33:54 +02:00
|
|
|
- "bitcoin_datadir:/deps/.bitcoin"
|
2022-04-24 05:19:34 +02:00
|
|
|
depends_on:
|
2018-04-29 09:52:33 +02:00
|
|
|
- bitcoind
|
2020-04-08 15:40:41 +02:00
|
|
|
|
|
|
|
tor:
|
|
|
|
restart: unless-stopped
|
2021-10-11 05:34:42 +02:00
|
|
|
image: btcpayserver/tor:0.4.6.5
|
2020-04-08 15:40:41 +02:00
|
|
|
container_name: tor
|
|
|
|
environment:
|
|
|
|
TOR_PASSWORD: btcpayserver
|
|
|
|
ports:
|
|
|
|
- "9050:9050" # SOCKS
|
|
|
|
- "9051:9051" # Tor Control
|
|
|
|
volumes:
|
|
|
|
- "tor_datadir:/home/tor/.tor"
|
|
|
|
- "torrcdir:/usr/local/etc/tor"
|
|
|
|
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
|
|
|
|
2018-02-23 07:21:42 +01:00
|
|
|
volumes:
|
2019-09-06 09:51:49 +02:00
|
|
|
sshd_datadir:
|
2018-02-23 07:21:42 +01:00
|
|
|
bitcoin_datadir:
|
2019-12-24 08:20:44 +01:00
|
|
|
elementsd_liquid_datadir:
|
2018-03-17 11:26:30 +01:00
|
|
|
customer_lightningd_datadir:
|
|
|
|
merchant_lightningd_datadir:
|
|
|
|
lightning_charge_datadir:
|
2018-05-11 23:59:24 +02:00
|
|
|
customer_lnd_datadir:
|
|
|
|
merchant_lnd_datadir:
|
2020-04-08 15:40:41 +02:00
|
|
|
tor_datadir:
|
|
|
|
torrcdir:
|
|
|
|
tor_servicesdir:
|
2023-04-10 09:38:49 +02:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
driver: bridge
|
|
|
|
custom:
|
|
|
|
driver: bridge
|
|
|
|
ipam:
|
|
|
|
config:
|
|
|
|
- subnet: 172.23.0.0/16
|