route txes through tor and i2p proxies (#29)

* route txes through tor and i2p proxies

* include entry script

* update docker-files with dependency order and use new monerod command

* Update dockerfiles/i2p

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>

* Update dockerfiles/i2p

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>

* Update dockerfiles/i2p-entrypoint.sh

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>

* Update dockerfiles/monero-entrypoint.sh

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>

* Update dockerfiles/monero-entrypoint.sh

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>

* remove q install and dns, specify private ip for tor/i2p

* fix ips

* use ubuntu 22.04 for tor build

* fix i2pd configs

* adjust i2p config, no depends on monerod

* use gunicorn for flask app, faster restart time

---------

Co-authored-by: nahuhh <50635951+nahuhh@users.noreply.github.com>
This commit is contained in:
lalanza808
2024-12-29 11:34:56 -08:00
committed by GitHub
parent 183d85942d
commit cdcca37ce0
9 changed files with 247 additions and 39 deletions

View File

@@ -1,21 +1,27 @@
FROM ubuntu:22.04 as og
FROM ubuntu:22.04 AS og
ENV DEBIAN_FRONTEND noninteractive
ARG threads
ENV MONERO_RELEASE v0.18.3.4
WORKDIR /opt/monero
# Install dependencies
RUN apt-get update && apt-get install -y \
build-essential cmake pkg-config libboost-all-dev \
libssl-dev libzmq3-dev libunbound-dev libsodium-dev libpgm-dev git
libssl-dev libzmq3-dev libunbound-dev libsodium-dev libpgm-dev git wget
RUN git clone https://github.com/monero-project/monero --branch=v0.18.3.4 --depth=1 .
# Clone monero repo
RUN git clone https://github.com/monero-project/monero --branch=$MONERO_RELEASE --depth=1 .
# Clone submodules
RUN git submodule update --init --force
RUN make -j$threads
# Compile monero
ARG THREADS 2
RUN make -j$THREADS
RUN wget -qO /ban_list.txt "https://raw.githubusercontent.com/Boog900/monero-ban-list/main/ban_list.txt"
# Download ban list
RUN wget -qO /tmp/ban_list.txt "https://raw.githubusercontent.com/Boog900/monero-ban-list/main/ban_list.txt"
FROM ubuntu:22.04
@@ -25,7 +31,7 @@ COPY --from=og /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monerod /bin/monerod
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monero-wallet-cli /bin/monero-wallet-cli
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monero-wallet-rpc /bin/monero-wallet-rpc
COPY --from=og /ban_list.txt /ban_list.txt
COPY --from=og /tmp/ban_list.txt /ban_list.txt
EXPOSE 18080
EXPOSE 18081