Bump joinmarket to fix receive-payjoin
This commit is contained in:
@@ -3,8 +3,8 @@ version: "3"
|
|||||||
services:
|
services:
|
||||||
joinmarket:
|
joinmarket:
|
||||||
container_name: joinmarket
|
container_name: joinmarket
|
||||||
image: btcpayserver/joinmarket:0.9.1
|
image: btcpayserver/joinmarket:0.9.3-devbtcpay
|
||||||
restart: 'no'
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
READY_FILE: /root/.nbxplorer/btc_fully_synched
|
READY_FILE: /root/.nbxplorer/btc_fully_synched
|
||||||
ENSURE_WALLET: 1
|
ENSURE_WALLET: 1
|
||||||
@@ -25,7 +25,8 @@ services:
|
|||||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||||
- "tor_datadir:/home/tor/.tor"
|
- "tor_datadir:/home/tor/.tor"
|
||||||
expose:
|
expose:
|
||||||
- 62601
|
- 62601 # obwatch
|
||||||
|
- 8080 # payjoin server
|
||||||
links:
|
links:
|
||||||
- bitcoind
|
- bitcoind
|
||||||
|
|
||||||
|
|||||||
@@ -107,6 +107,14 @@ supervisorctl start yg-privacyenhanced
|
|||||||
|
|
||||||
*** Note that services will NOT be restarted automatically if the container restart. ***
|
*** Note that services will NOT be restarted automatically if the container restart. ***
|
||||||
|
|
||||||
|
If you want to automatically restart the service when the container restart,
|
||||||
|
|
||||||
|
```bash
|
||||||
|
vim $AUTO_START
|
||||||
|
```
|
||||||
|
|
||||||
|
Then remove the comment `#` in front of the service name you want to automatically restart.
|
||||||
|
|
||||||
## OB-Watcher
|
## OB-Watcher
|
||||||
|
|
||||||
The `ob-watcher` service allows you to [see an order book](https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/orderbook.md).
|
The `ob-watcher` service allows you to [see an order book](https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/orderbook.md).
|
||||||
|
|||||||
12
jm.sh
12
jm.sh
@@ -13,6 +13,7 @@ Tooling to setup your joinmarket yield generator
|
|||||||
bash: Open an interactive bash session in the joinmarket container
|
bash: Open an interactive bash session in the joinmarket container
|
||||||
receive-payjoin: Receive a payjoin payment
|
receive-payjoin: Receive a payjoin payment
|
||||||
sendpayment: Send a payjoin through coinjoin (password needed)
|
sendpayment: Send a payjoin through coinjoin (password needed)
|
||||||
|
reset-config: Reset the configuration to its default value
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
* jm.sh wallet-tool-generate
|
* jm.sh wallet-tool-generate
|
||||||
@@ -21,6 +22,7 @@ Example:
|
|||||||
* jm.sh receive-payjoin <amount>
|
* jm.sh receive-payjoin <amount>
|
||||||
* jm.sh sendpayment <amount> <address>
|
* jm.sh sendpayment <amount> <address>
|
||||||
* jm.sh wallet-tool history
|
* jm.sh wallet-tool history
|
||||||
|
* jm.sh reset-config
|
||||||
* jm.sh bash
|
* jm.sh bash
|
||||||
|
|
||||||
See https://github.com/btcpayserver/btcpayserver-docker/tree/master/docs/joinmarket.md for more information.
|
See https://github.com/btcpayserver/btcpayserver-docker/tree/master/docs/joinmarket.md for more information.
|
||||||
@@ -34,6 +36,11 @@ while (( "$#" )); do
|
|||||||
shift 1
|
shift 1
|
||||||
break;
|
break;
|
||||||
;;
|
;;
|
||||||
|
reset-config)
|
||||||
|
CMD="$1"
|
||||||
|
shift 1
|
||||||
|
break;
|
||||||
|
;;
|
||||||
wallet-tool)
|
wallet-tool)
|
||||||
CMD="$1"
|
CMD="$1"
|
||||||
shift 1
|
shift 1
|
||||||
@@ -89,7 +96,10 @@ else
|
|||||||
elif [[ "$CMD" == "set-wallet" ]]; then
|
elif [[ "$CMD" == "set-wallet" ]]; then
|
||||||
docker exec joinmarket set-wallet.sh "$@"
|
docker exec joinmarket set-wallet.sh "$@"
|
||||||
docker restart joinmarket
|
docker restart joinmarket
|
||||||
elif [[ "$CMD" == "bash" ]]; then
|
elif [[ "$CMD" == "reset-config" ]]; then
|
||||||
|
docker exec -ti joinmarket bash -c 'rm -f "$CONFIG"'
|
||||||
|
docker restart joinmarket
|
||||||
|
elif [[ "$CMD" == "bash" ]]; then
|
||||||
docker exec -ti joinmarket exec-wrapper.sh bash "$@"
|
docker exec -ti joinmarket exec-wrapper.sh bash "$@"
|
||||||
else
|
else
|
||||||
display_help
|
display_help
|
||||||
|
|||||||
Reference in New Issue
Block a user