docker-lbrynet/Dockerfile

17 lines
438 B
Text
Raw Normal View History

2018-10-04 00:15:04 +07:00
FROM ubuntu:18.04
EXPOSE 5279
VOLUME /storage
RUN apt-get update && apt-get -y install ca-certificates
2018-10-04 00:15:04 +07:00
RUN mkdir /daemon
WORKDIR /daemon
2019-01-29 18:22:50 +07:00
COPY lbrynet ./
COPY conf/daemon_settings.yml ./
COPY conf/test_daemon_settings.yml ./
2018-10-04 00:15:04 +07:00
ENV LBRY_DATA_DIR /storage/data
ENV LBRY_LBRYUM_WALLET_DIR /storage/lbryum
ENV LBRY_DOWNLOAD_DIRECTORY /storage/download
ENV LBRY_API 0.0.0.0:5279
2018-10-04 00:15:04 +07:00
COPY start.sh ./start.sh
2019-01-29 18:22:50 +07:00
RUN chmod a+x start.sh
2018-10-04 00:15:04 +07:00
CMD ["./start.sh"]