diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef0084d..b07bd73 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -86,7 +86,7 @@ Deployment flexibility: - Multi-authorization: SuperAdmin, Accounting (transactions, etc.), Marketing (usage, etc.), etc. - Web Wallet - Using Trezor/Coldcard for authentication/signing -- Index the blockchain +- Index the blockchain (full explorer) - PGP features: signing, verifying, etc. - Full blockchain explorer - e-mail notifications when things happen (monitoring): diff --git a/doc/INSTALL.md b/doc/INSTALL.md index fe374c0..62ce547 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -47,10 +47,9 @@ debian@dev:~/dev/Cyphernode$ docker network connect cyphernodenet yourappcontain ```shell 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/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 pycoin_docker/env.properties ``` @@ -73,6 +72,8 @@ debian@dev:~/dev/Cyphernode$ vi pycoin_docker/env.properties ### 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 debian@dev:~/dev/Cyphernode$ docker stack deploy --compose-file docker-compose.yml cyphernodestack Creating service cyphernodestack_cyphernode diff --git a/docker-compose.yml b/docker-compose.yml index c28490d..d62271b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,9 +13,9 @@ services: # Match with DB_PATH in proxy_docker/env.properties - "~/btcproxydb:/proxyuser/db" - "~/.lightning:/proxyuser/.lightning" - deploy: - placement: - constraints: [node.hostname==dev] +# deploy: +# placement: +# constraints: [node.hostname==dev] networks: - cyphernodenet @@ -24,9 +24,9 @@ services: env_file: - cron_docker/env.properties image: proxycronimg - deploy: - placement: - constraints: [node.hostname==dev] +# deploy: +# placement: +# constraints: [node.hostname==dev] networks: - cyphernodenet @@ -37,9 +37,9 @@ services: image: pycoinimg # ports: # - "7777:7777" - deploy: - placement: - constraints: [node.hostname==dev] +# deploy: +# placement: +# constraints: [node.hostname==dev] networks: - cyphernodenet @@ -50,9 +50,9 @@ services: - "9735:9735" volumes: - "~/.lightning:/lnuser/.lightning" - deploy: - placement: - constraints: [node.hostname==dev] +# deploy: +# placement: +# constraints: [node.hostname==dev] networks: - cyphernodenet