Small tweaks

This commit is contained in:
kexkey
2018-09-23 00:36:50 +03:00
parent c39f81f683
commit 3700adde60
3 changed files with 16 additions and 15 deletions

View File

@@ -86,7 +86,7 @@ Deployment flexibility:
- Multi-authorization: SuperAdmin, Accounting (transactions, etc.), Marketing (usage, etc.), etc. - Multi-authorization: SuperAdmin, Accounting (transactions, etc.), Marketing (usage, etc.), etc.
- Web Wallet - Web Wallet
- Using Trezor/Coldcard for authentication/signing - Using Trezor/Coldcard for authentication/signing
- Index the blockchain - Index the blockchain (full explorer)
- PGP features: signing, verifying, etc. - PGP features: signing, verifying, etc.
- Full blockchain explorer - Full blockchain explorer
- e-mail notifications when things happen (monitoring): - e-mail notifications when things happen (monitoring):

View File

@@ -47,10 +47,9 @@ debian@dev:~/dev/Cyphernode$ docker network connect cyphernodenet yourappcontain
```shell ```shell
debian@dev:~/dev/Cyphernode$ vi proxy_docker/env.properties debian@dev:~/dev/Cyphernode$ vi proxy_docker/env.properties
debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/derivation.properties debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/config.properties
debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/watcher_btcnode_curlcfg.properties debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/watcher_btcnode_curlcfg.properties
debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/spender_btcnode_curlcfg.properties debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/spender_btcnode_curlcfg.properties
debian@dev:~/dev/Cyphernode$ vi proxy_docker/app/config/config.properties
debian@dev:~/dev/Cyphernode$ vi cron_docker/env.properties debian@dev:~/dev/Cyphernode$ vi cron_docker/env.properties
debian@dev:~/dev/Cyphernode$ vi pycoin_docker/env.properties debian@dev:~/dev/Cyphernode$ vi pycoin_docker/env.properties
``` ```
@@ -73,6 +72,8 @@ debian@dev:~/dev/Cyphernode$ vi pycoin_docker/env.properties
### Deploy ### Deploy
Edit docker-compose.yml to specify special deployment constraints or if you want to run the Bitcoin node on the same machine: uncomment corresponding lines.
```shell ```shell
debian@dev:~/dev/Cyphernode$ docker stack deploy --compose-file docker-compose.yml cyphernodestack debian@dev:~/dev/Cyphernode$ docker stack deploy --compose-file docker-compose.yml cyphernodestack
Creating service cyphernodestack_cyphernode Creating service cyphernodestack_cyphernode

View File

@@ -13,9 +13,9 @@ services:
# Match with DB_PATH in proxy_docker/env.properties # Match with DB_PATH in proxy_docker/env.properties
- "~/btcproxydb:/proxyuser/db" - "~/btcproxydb:/proxyuser/db"
- "~/.lightning:/proxyuser/.lightning" - "~/.lightning:/proxyuser/.lightning"
deploy: # deploy:
placement: # placement:
constraints: [node.hostname==dev] # constraints: [node.hostname==dev]
networks: networks:
- cyphernodenet - cyphernodenet
@@ -24,9 +24,9 @@ services:
env_file: env_file:
- cron_docker/env.properties - cron_docker/env.properties
image: proxycronimg image: proxycronimg
deploy: # deploy:
placement: # placement:
constraints: [node.hostname==dev] # constraints: [node.hostname==dev]
networks: networks:
- cyphernodenet - cyphernodenet
@@ -37,9 +37,9 @@ services:
image: pycoinimg image: pycoinimg
# ports: # ports:
# - "7777:7777" # - "7777:7777"
deploy: # deploy:
placement: # placement:
constraints: [node.hostname==dev] # constraints: [node.hostname==dev]
networks: networks:
- cyphernodenet - cyphernodenet
@@ -50,9 +50,9 @@ services:
- "9735:9735" - "9735:9735"
volumes: volumes:
- "~/.lightning:/lnuser/.lightning" - "~/.lightning:/lnuser/.lightning"
deploy: # deploy:
placement: # placement:
constraints: [node.hostname==dev] # constraints: [node.hostname==dev]
networks: networks:
- cyphernodenet - cyphernodenet