mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
77d3879013
Co-authored-by: alkum <98610826+alkum@users.noreply.github.com> Co-authored-by: Christoph Atteneder <christoph.atteneder@gmail.com> Co-authored-by: Stephan Oeste <emzy@emzy.de> Co-authored-by: Alva Swanson <alvasw@protonmail.com>
30 lines
870 B
Docker
30 lines
870 B
Docker
# docker run -it -p 9050 -p 2002 --restart-policy unless-stopped --name haveno-seednode haveno-seednode
|
|
# TODO: image very heavy, but it's hard to significantly reduce the size without bins
|
|
|
|
FROM openjdk:21-jdk-bullseye
|
|
|
|
RUN set -ex && \
|
|
apt update && \
|
|
apt --no-install-recommends --yes install \
|
|
make \
|
|
git \
|
|
tor
|
|
|
|
RUN set -ex && adduser --system --group --disabled-password haveno && \
|
|
mkdir -p /home/haveno && \
|
|
chown -R haveno:haveno /home/haveno
|
|
|
|
USER haveno
|
|
|
|
WORKDIR /home/haveno
|
|
|
|
RUN set -ex && git clone https://github.com/haveno-dex/haveno.git && \
|
|
cd haveno && \
|
|
make skip-tests
|
|
|
|
WORKDIR /home/haveno/haveno
|
|
|
|
ENTRYPOINT [ "./haveno-seednode" ]
|
|
|
|
CMD ["--baseCurrencyNetwork=XMR_STAGENET", "--useLocalhostForP2P=false", "--useDevPrivilegeKeys=false", "--nodePort=2002", "--appName=haveno-XMR_STAGENET_Seed_2002" ]
|