diff --git a/README.md b/README.md index 07e5b0d..164e4d4 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ So we can simplify things and make things easier also ease of running through co To build yourself you can run ``` -docker build -t nolim1t/specter-desktop:v0.6.1 . +docker build -t nolim1t/specter-desktop:v0.7.1 . ``` ## Tags @@ -64,6 +64,8 @@ This is a bit complex but the idea is to make sure there is a bitcoind installat I also used host networking for ease of use, and also added ```privileged``` for further ease of use in case your user can't access the usb socket if you would like to run as a bridge to HWI or use the ```--hwibridge``` flag +Or you can use the sample docker-compose in HWIBridge mode [here](https://github.com/lncm/docker-specter-desktop/blob/master/docker-compose.yml.hwibridge) + ```yaml version: '3.8' services: @@ -84,7 +86,7 @@ services: image: lncm/specter-desktop:v0.6.1 container_name: specter-desktop privileged: true - command: /usr/local/bin/python3 -m cryptoadvance.specter server --host ip.addr + command: --host ip.addr restart: on-failure ports: - "25441:25441" diff --git a/docker-compose.yml.hwibridge b/docker-compose.yml.hwibridge new file mode 100644 index 0000000..c3101ea --- /dev/null +++ b/docker-compose.yml.hwibridge @@ -0,0 +1,14 @@ +version: '3.8' +services: + specterhwi: + image: lncm/specter-desktop:v0.7.1 + container_name: specter-desktop + network_mode: host + ports: + - "25441:25441" + restart: on-failure + stop_grace_period: 5m30s + privileged: true + command: --hwibridge + volumes: + - "${PWD}/data:/data/.specter"