update monerod v0.18.3.1

This commit is contained in:
Matthew Tran 2023-10-28 21:02:12 +00:00
parent d0874de942
commit 064ebdfe1b
6 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update && apt-get upgrade RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget openjdk-18-jre RUN apt-get install -y wget openjdk-18-jre
RUN useradd -m matt RUN useradd -m matt

View File

@ -1,6 +1,6 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update && apt-get upgrade RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget bzip2 RUN apt-get install -y wget bzip2
RUN useradd -m matt RUN useradd -m matt
@ -9,6 +9,6 @@ WORKDIR /home/matt
RUN wget https://downloads.getmonero.org/linux64 RUN wget https://downloads.getmonero.org/linux64
RUN tar xvf linux64 && rm linux64 RUN tar xvf linux64 && rm linux64
RUN mv monero-x86_64-linux-gnu-v0.18.2.2/ monero/ RUN mv monero-x86_64-linux-gnu-v0.18.3.1/ monero/
COPY --chown=matt:matt entry.sh ./ COPY --chown=matt:matt entry.sh ./

View File

@ -7,7 +7,7 @@ monero/monerod \
--restricted-rpc \ --restricted-rpc \
--zmq-pub tcp://0.0.0.0:18083 \ --zmq-pub tcp://0.0.0.0:18083 \
--out-peers 64 --in-peers 32 \ --out-peers 64 --in-peers 32 \
--add-priority-node=node.supportxmr.com:18080 \ --add-priority-node=p2pmd.xmrvsbeast.com:18080 \
--add-priority-node=nodes.hashvault.pro:18080 \ --add-priority-node=nodes.hashvault.pro:18080 \
--disable-dns-checkpoints \ --disable-dns-checkpoints \
--enable-dns-blocklist --enable-dns-blocklist

View File

@ -1,6 +1,6 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update && apt-get upgrade RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget RUN apt-get install -y wget
RUN useradd -m matt RUN useradd -m matt

View File

@ -1,6 +1,6 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update && apt-get upgrade RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget unzip RUN apt-get install -y wget unzip
RUN useradd -m matt RUN useradd -m matt

View File

@ -4,7 +4,7 @@ FROM ubuntu:22.04
ENV TZ=America/Los_Angeles ENV TZ=America/Los_Angeles
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get upgrade RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y nginx certbot python3-certbot-nginx python3-pip RUN apt-get install -y nginx certbot python3-certbot-nginx python3-pip
RUN pip3 install sendgrid RUN pip3 install sendgrid