Remove docker link from readme (#1156)

This commit is contained in:
Jonathan Zernik 2021-09-02 14:29:38 -07:00 committed by GitHub
parent f5b4005463
commit c33f905ecc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 26 deletions

View file

@ -9,8 +9,6 @@ Node for Squeak protocol
* an LND node
* Python 3.6 or later
If you don't already have a bitcoin node or lightning node, you can follow the instructions [here](docs/DOCKER.md) to launch them in Docker.
#### Steps
- Update the **config.ini** file and fill in the relevant sections to connect to your bitcoin and lnd nodes:
```

View file

@ -1,24 +0,0 @@
# Running bitcoin-core and LND with Docker
If you don't already have your own bitcoin node and lightning node, you can use docker-compose to launch new ones.
#### Steps
- Build and start docker-compose:
```
$ cd docker
$ docker-compose build
$ docker-compose up
```
- If you want to use testnet, run the normal `up` command:
```
$ docker-compose up
```
- If you want to use mainnet, run with the `docker-compose.mainnet.yml` override file:
```
$ docker-compose -f docker-compose.yml -f docker-compose.mainnet.yml up
```
- You may need to change the permissions of the `~/.lnd` directory on your host after docker containers start.
```
$ sudo chmod -R 755 ~/.lnd/
```