From 85199820370b19d32bee79fe78c504d8e7189b44 Mon Sep 17 00:00:00 2001 From: Leopere Date: Tue, 2 Oct 2018 16:38:34 -0400 Subject: [PATCH] Committing base Dockerfile for lbrycrdd This commit should contain a working lbrycrdd inside of a Docker container. The idea is that this should work by default and store a few things on the host system for persistence. --- lbrycrd/Dockerfile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 lbrycrd/Dockerfile diff --git a/lbrycrd/Dockerfile b/lbrycrd/Dockerfile new file mode 100644 index 0000000..c9f614c --- /dev/null +++ b/lbrycrd/Dockerfile @@ -0,0 +1,32 @@ +## This base image is for running latest lbrycrdd +# For some reason I may switch this image over to Alpine when I can RCA why it won't start. +FROM ubuntu:18.04 +MAINTAINER chamunks [at] gmail [dot] com + +RUN adduser lbrycrdd --gecos GECOS --shell /bin/bash/ --disabled-password --home /data/ && \ + apt update && \ + apt -y install unzip wget && \ + apt autoclean -y && \ + rm -rf /var/lib/apt/lists/* + + +RUN wget -O /usr/bin/lbrycrd-linux.zip https://github.com/lbryio/lbrycrd/releases/download/v0.12.2.2/lbrycrd-linux.zip && \ + cd /usr/bin/ && \ + unzip lbrycrd-linux.zip && \ + rm lbrycrd-linux.zip + +ADD start.sh /usr/bin/start +ADD docker-entrypoint.sh /usr/bin/docker-entrypoint + +USER lbrycrdd + +VOLUME /data/ +VOLUME /etc/lbrycrdd/ + +## Exposing daemon port and RPC port +EXPOSE 9245 9246 + +## For now this is a placeholder that executes /bin/bash on `docker exec` +ENTRYPOINT ["docker-entrypoint"] + +CMD ["start"]