Skip to content

Commit d49b001

Browse files
committed
remote direct tor port mapping to host, add info to readme, ignore docker-compose.yaml now with templating
1 parent 030dd31 commit d49b001

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*.sln.docstates
1212
/signet/*
1313
up.sh
14-
14+
docker-compose.yaml
1515
# User-specific files (MonoDevelop/Xamarin Studio)
1616
*.userprefs
1717

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"cSpell.words": [
33
"Plebnet",
44
"bitcoind"
5-
]
5+
],
6+
"cSpell.enabled": true
67
}

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,17 @@ cd plebnet-playground-docker
3232
| arm 32-bit linux | arm-linux-gnueabihf |
3333
| ARM64 linux | aarch64-linux-gnu |
3434

35+
### Services
36+
| Service | Description |
37+
| ----------- | ----------- |
38+
| bitcoind | Bitcoin Core Daemon |
39+
| lnd | Lightning Labs LND Daemon |
40+
| tor | tor network daemon |
41+
| rtl | Ride The Lightning Daemon |
42+
| thunderhub | Thunderhub Lightning UI |
43+
| docs | MKDocs documentation |
44+
| notebook | Jupyter Notebook environment setup for lightning development |
45+
| dashboard | Jupyter Dashboard |
3546

3647
### Install and start all services (Intel x64 example)
3748
***
@@ -40,10 +51,9 @@ cd plebnet-playground-docker
4051
ARCH=x86_64-linux-gnu ./install.sh
4152
```
4253

43-
### Install and start just the `rtl` service (ride-the-lightning)
44-
***
54+
### Install and start just the `bitcoind`,`lnd` services (comma seperate them)
4555
```sh
46-
ARCH=x86_64-linux-gnu services=rtl ./install.sh
56+
ARCH=x86_64-linux-gnu services=bitcoind,lnd ./install.sh
4757
```
4858

4959
### Stop containers

docker-compose.yaml.template

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,6 @@ services:
7474
expose:
7575
- 9050
7676
- 9051
77-
ports:
78-
- "9050:9050"
79-
- "9051:9051"
8077
volumes:
8178
- type: bind
8279
source: ${oc.env:PWD}/volumes/tor_datadir

0 commit comments

Comments
 (0)