Start isolated docker setup.

This commit is contained in:
tecnovert
2020-12-27 21:39:10 +02:00
parent a6ead83fd2
commit d2ded157f8
20 changed files with 332 additions and 42 deletions

View File

@@ -0,0 +1,24 @@
FROM i_swapclient as install_stage
RUN basicswap-prepare --preparebinonly --bindir=/coin_bin --withcoin=particl --withoutcoin=litecoin
FROM debian:buster-slim
COPY --from=install_stage /coin_bin .
ENV PARTICL_DATA /data
RUN groupadd -r particl && useradd -r -m -g particl particl \
&& apt-get update \
&& apt-get install -qq --no-install-recommends gosu \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p "$PARTICL_DATA" \
&& chown -R particl:particl "$PARTICL_DATA" \
&& ln -sfn "$PARTICL_DATA" /home/particl/.particl \
&& chown -h particl:particl /home/particl/.particl
VOLUME /data
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 51735 20792 51738
CMD ["particld"]