remove tari (high network/cpu usage)

This commit is contained in:
Matthew Tran 2025-05-08 03:00:23 -07:00
parent 2c88b9c474
commit afa5516672
6 changed files with 2 additions and 25 deletions

View File

@ -6,7 +6,6 @@ Services deployed on [matthewtran.com](https://matthewtran.com).
- gitea ([git.matthewtran.com](https://git.matthewtran.com)) - gitea ([git.matthewtran.com](https://git.matthewtran.com))
- monerod - monerod
- p2pool (`xmrig -o matthewtran.com`) - p2pool (`xmrig -o matthewtran.com`)
- tari
- minecraft - minecraft
- minecraft bedrock - minecraft bedrock
- terraria - terraria

View File

@ -163,6 +163,7 @@ def add_packages():
"avahi", "avahi",
"htop", "htop",
"python3", "python3",
"tmux",
"vim", "vim",
"zip", "zip",
]), ]),

View File

@ -14,7 +14,6 @@ IMAGES = {
"crypto": [ "crypto": [
"monerod", "monerod",
"p2pool", "p2pool",
"tari",
], ],
"game": [ "game": [
"minecraft", "minecraft",

View File

@ -4,5 +4,4 @@ cd /data
exec ~/p2pool \ exec ~/p2pool \
--mini \ --mini \
--host 127.0.0.1 \ --host 127.0.0.1 \
--wallet 42j7pyNRf8WE96D1xb6pjPWCwaDaYYevwZSPpELbTJjnXiKp7Lhtahbhb5Gc3p2BVxgMB3FEGNPUcbST1oZds6nBERA4jrQ \ --wallet 42j7pyNRf8WE96D1xb6pjPWCwaDaYYevwZSPpELbTJjnXiKp7Lhtahbhb5Gc3p2BVxgMB3FEGNPUcbST1oZds6nBERA4jrQ
--merge-mine tari://127.0.0.1:18102 12AZgW4PXRsmsAzWEmfmGtBy1KKvYYKA2VByvjFBqEa7ZmuL3vrfcaA5oo5DogAPWpVyTGdfKkdLktYCQz5vVUD4Zir

View File

@ -1,14 +0,0 @@
FROM ubuntu:24.04
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget unzip
WORKDIR /root
# currently v2.0.1
RUN wget -O tari.zip https://github.com/tari-project/tari/releases/download/v2.0.1/tari_suite-2.0.1-09831ca-linux-x86_64.zip
RUN unzip tari.zip -d tari && rm tari.zip
COPY entry.sh ./
CMD ["/bin/bash", "/root/entry.sh"]

View File

@ -1,7 +0,0 @@
#!/bin/sh
# TODO clean termination?
~/tari/minotari_node -n -b /data --grpc-enabled --mining-enabled --watch status &
trap 'echo "stopping tari node..."' SIGTERM SIGINT
tail -f /dev/null &
wait $!