22 lines
672 B
Markdown
22 lines
672 B
Markdown
# VLS Containers
|
|
|
|
## Volume Creation
|
|
|
|
```
|
|
docker volume create bitcoin_data
|
|
docker volume create lightning_data
|
|
```
|
|
|
|
## Docker Compose Run
|
|
|
|
```
|
|
docker compose up --build
|
|
```
|
|
|
|
### References
|
|
|
|
- [bitcoind](https://github.com/ruimarinho/docker-bitcoin-core/blob/master/23/alpine/Dockerfile) by @ruimarinho
|
|
- [lightningd with clboss](https://github.com/tsjk/docker-core-lightning/blob/main/Dockerfile) by @tsjk
|
|
- [elements lightning](https://github.com/ElementsProject/lightning/blob/master/contrib/docker/Dockerfile.alpine) by @ElementsProject
|
|
- [docker compose](https://github.com/LukasBahrenberg/lightning-dockercompose/blob/master/docker-compose.yaml) by @LukasBahrenberg
|