2018-09-30 22:17:53 +02:00
|
|
|
## This docker-compose should just get the lbrynet-daemon running and it's ports published to the host.
|
|
|
|
## Just git clone this entire git repo to your local and docker-compose up -d from inside of the lbrynet-daemon directory.
|
|
|
|
## At least until lbryio hosts this officially on their account with Docker Hub
|
2018-06-01 02:09:46 +02:00
|
|
|
## To-Do:
|
|
|
|
## * [] setup webhooks in gitlab on projects that build containers for this.
|
|
|
|
## * [] Get the thing tested & perfected.
|
|
|
|
## * [] Healthchecks on all containers ideally without needing a custom container.
|
|
|
|
version: '3.4'
|
|
|
|
services:
|
|
|
|
|
|
|
|
#############
|
|
|
|
## Lbrynet ##
|
|
|
|
#############
|
|
|
|
lbrynet:
|
|
|
|
build: .
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 4444:4444
|
|
|
|
- 50001:50001
|
|
|
|
## host volumes for persistent data such as wallet private keys.
|
|
|
|
volumes:
|
2018-09-30 22:17:53 +02:00
|
|
|
- ./data/:/data
|