From b8435832946b5bf6296844f5d581c969e98e1500 Mon Sep 17 00:00:00 2001 From: Tom Trevethan Date: Mon, 25 Apr 2022 14:07:45 +0100 Subject: [PATCH] add mercurywallet --- apps/mercury-wallet/docker-compose.yml | 64 ++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 apps/mercury-wallet/docker-compose.yml diff --git a/apps/mercury-wallet/docker-compose.yml b/apps/mercury-wallet/docker-compose.yml new file mode 100644 index 000000000..09c680d1d --- /dev/null +++ b/apps/mercury-wallet/docker-compose.yml @@ -0,0 +1,64 @@ +version: "3.7" + +services: + web: + image: : + restart: on-failure + stop_grace_period: 1m + ports: + # Replace with the port that your app's web server + # is listening inside the Docker container. If you need to + # expose more ports, add them below. + - : + volumes: + # Uncomment to mount your data directories inside + # the Docker container for storing persistent data + # - ${APP_DATA_DIR}/foo:/foo + # - ${APP_DATA_DIR}/bar:/bar + + # Uncomment to mount LND's data directory as read-only + # inside the Docker container at path /lnd + # - ${LND_DATA_DIR}:/lnd:ro + + # Uncomment to mount Bitcoin Core's data directory as + # read-only inside the Docker container at path /bitcoin + # - ${BITCOIN_DATA_DIR}:/bitcoin:ro + environment: + # Pass any environment variables to your app for configuration in the form: + # VARIABLE_NAME: value + # + # Here are all the Umbrel provided variables that you can pass through to + # your app to connect to Bitcoin Core, LND, Electrum and Tor: + # + # Bitcoin Core environment variables + # $BITCOIN_NETWORK - Can be "mainnet", "testnet" or "regtest" + # $BITCOIN_IP - Local IP of Bitcoin Core + # $BITCOIN_P2P_PORT - P2P port + # $BITCOIN_RPC_PORT - RPC port + # $BITCOIN_RPC_USER - RPC username + # $BITCOIN_RPC_PASS - RPC password + # $BITCOIN_RPC_AUTH - RPC auth string + # + # LND environment variables + # $LND_IP - Local IP of LND + # $LND_GRPC_PORT - gRPC Port of LND + # $LND_REST_PORT - REST Port of LND + # + # Electrum server environment variables + # $ELECTRUM_IP - Local IP of Electrum server + # $ELECTRUM_PORT - Port of Electrum server + # + # Tor proxy environment variables + # $TOR_PROXY_IP - Local IP of Tor proxy + # $TOR_PROXY_PORT - Port of Tor proxy + # + # App specific environment variables + # $APP_HIDDEN_SERVICE - The address of the Tor hidden service your app will be exposed at + # $APP_DOMAIN - Local domain name of the app ("umbrel.local" on Umbrel OS) + # $APP_PASSWORD - Unique plain text password that can be used for authentication in your app, shown to the user in the Umbrel UI + # $APP_SEED - Unique 256 bit long hex string (128 bits of entropy) deterministically derived from user's Umbrel seed and your app's ID + # If your app has more services, like a database container, you can define those + # services below: + # db: + # image: : + # ...