Go to file
2019-01-29 18:22:50 +07:00
conf Update build process 2019-01-29 18:22:50 +07:00
Dockerfile Update build process 2019-01-29 18:22:50 +07:00
Makefile Update build process 2019-01-29 18:22:50 +07:00
README.md Update build process 2019-01-29 18:22:50 +07:00
start.sh Update build process 2019-01-29 18:22:50 +07:00

Dockerfile for building lbrynet image

Image usage

version: '3.2'

services:
  daemon_test_local:
    image: sayplastic/lbrynet:latest
    ports:
      - "5279:5279"
    volumes:
      - type: bind
        source: ./storage
        target: /storage
    # or
    volumes:
      - type: volume
        source: storage
        target: /storage

Building

docker build -t sayplastic/lbrynet:0.30rc6 .
docker tag sayplastic/lbrynet:0.30rc6 sayplastic/lbrynet:latest
docker push sayplastic/lbrynet