2019-04-24 11:33:35 -04:00
|
|
|
# lbrynet
|
2018-05-31 20:17:04 -04:00
|
|
|
|
2019-04-25 10:15:14 -04:00
|
|
|
## Compiler container
|
2018-05-31 20:17:04 -04:00
|
|
|
|
2019-04-25 20:41:42 -04:00
|
|
|
The [Dockerfile-linux-multiarch-compiler](Dockerfile-linux-multiarch-compiler) is for building lbrynet for any architecture supported
|
2019-04-25 10:15:14 -04:00
|
|
|
by an Ubuntu 18.04 base image.
|
2018-05-31 20:17:04 -04:00
|
|
|
|
2019-04-25 10:15:14 -04:00
|
|
|
### Register qemu to run docker images built for platforms other than your host
|
2018-05-31 20:17:04 -04:00
|
|
|
|
2019-04-24 11:33:35 -04:00
|
|
|
```
|
2019-04-25 10:15:14 -04:00
|
|
|
docker run --rm --privileged multiarch/qemu-user-static:register
|
2019-04-24 11:33:35 -04:00
|
|
|
```
|
2018-09-30 16:47:40 -04:00
|
|
|
|
2019-04-25 10:15:14 -04:00
|
|
|
### Build for the default x86_64 platform:
|
2018-11-29 20:01:58 +00:00
|
|
|
|
2019-04-24 11:33:35 -04:00
|
|
|
```
|
2019-04-25 20:41:42 -04:00
|
|
|
docker build -t lbrynet -f Dockerfile-linux-multiarch-compiler .
|
2019-04-25 10:15:14 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Build for an ARM 32-bit platform:
|
|
|
|
|
|
|
|
```
|
2019-04-25 20:41:42 -04:00
|
|
|
docker build -t lbrynet-armhf -f Dockerfile-linux-multiarch-compiler --build-arg BASE_IMAGE=multiarch/ubuntu-core:armhf-bionic .
|
2019-04-25 10:15:14 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Build for an ARM 64-bit platform:
|
|
|
|
|
|
|
|
```
|
2019-04-25 20:41:42 -04:00
|
|
|
docker build -t lbrynet-arm64 -f Dockerfile-linux-multiarch-compiler --build-arg BASE_IMAGE=multiarch/ubuntu-core:arm64-bionic .
|
2019-04-24 11:33:35 -04:00
|
|
|
```
|
2019-04-27 16:44:12 -04:00
|
|
|
|
|
|
|
### Extra build arguments
|
|
|
|
|
|
|
|
#### VERSION
|
|
|
|
|
|
|
|
Compile any version of lbrynet by specifying the git tag:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker build -t lbrynet:v0.36.0 --build-arg VERSION=v0.36.0 -f Dockerfile-linux-multiarch-compiler .
|
|
|
|
```
|
|
|
|
|
|
|
|
### Running from the compiler container directly
|
|
|
|
|
|
|
|
The container requires a home directory to be mounted at `/home/lbrynet`. This
|
|
|
|
is to ensure that the wallet is backed up to a real storage device. You must run
|
|
|
|
the container with the appropriate volume argument, or else lbrynet will refuse
|
|
|
|
to run.
|
|
|
|
|
|
|
|
If you compiled lbrynet as above, with the tag `lbrynet-x86`, you could run
|
|
|
|
docker like so:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run --rm -it -v wallet:/home/lbrynet lbrynet-x86 lbrynet start
|
|
|
|
```
|
|
|
|
|
|
|
|
This automatically creates a docker volume called `wallet` and it will persist
|
|
|
|
across container restarts. See more in the [Docker volume
|
|
|
|
documentation](https://docs.docker.com/storage/volumes/)
|