added monerod

This commit is contained in:
Matthew Tran
2023-09-10 10:18:54 +00:00
parent 1fc6ac77e2
commit 4308cd7bda
6 changed files with 52 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM ubuntu:22.04
WORKDIR /root
RUN apt-get update && apt-get upgrade
RUN apt-get install -y wget bzip2
RUN wget https://downloads.getmonero.org/linux64
RUN tar xvf linux64 && rm linux64
RUN mv monero-x86_64-linux-gnu-v0.18.2.2/ monero/
COPY entry.sh ./
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
monero/monerod \
--prune-blockchain \
--zmq-pub tcp://0.0.0.0:18083 \
--out-peers 64 --in-peers 32 \
--add-priority-node=node.supportxmr.com:18080 \
--add-priority-node=nodes.hashvault.pro:18080 \
--disable-dns-checkpoints \
--enable-dns-blocklist \
--non-interactive