diff --git a/MINE/notes.md b/MINE/notes.md index b6a95db..f940f5e 100644 --- a/MINE/notes.md +++ b/MINE/notes.md @@ -60,7 +60,7 @@ sudo docker exec -it amd-strix-halo-llama-rocm bash -c "/mnt/dl/rinhash/cpumine [sudo docker exec -it amd-strix-halo-llama-rocm bash -c "/mnt/dl/rinhash/cpuminer-opt-rin/cpuminer --algo rinhash --benchmark -t 4" rinhash.mine.zergpool.com:7148 c=RIN] -!!!!!!!!!!!!!!!!!!!!!! BEST !!!!!!!!!!!!!!!!!! +!!!!!!!!!!!!!!!!!!!!!! BEST !!!!!!!!!!!!!!!!!! Active exchange: Listed on Exbitron (RIN/USDT) sudo docker exec -it amd-strix-halo-llama-rocm bash -c "/mnt/dl/rinhash/cpuminer-opt-rin/cpuminer -a rinhash -o stratum+tcp://rinhash.mine.zergpool.com:7148 -u bc1qjn4m6rmrveuxhk02a5qhe4r6kdcsvvt3vhdn9j -p c=BTC,mc=RIN,ID=StrixHalo -t 32" ----------------------------------------------------------------- pool 2: # Test other potential RinHash pools (if they exist) diff --git a/MINE/rin/container.yml b/MINE/rin/container.yml new file mode 100644 index 0000000..6288f45 --- /dev/null +++ b/MINE/rin/container.yml @@ -0,0 +1,23 @@ +version: "3.8" + +services: + rincoin-node: + container_name: rincoin-node + # Builds from the RinCoin repo (expects a Dockerfile there). + build: + context: https://github.com/Rin-coin/rincoin.git + dockerfile: Dockerfile + restart: unless-stopped + ports: + - "9555:9555" # P2P + - "9556:9556" # RPC + volumes: + # Absolute paths recommended. Update to where you want node data stored. + - /mnt/data/docker_vol/rincoin/rincoin-node/data:/data + # Provide your config at this exact path on host: + - /mnt/data/docker_vol/rincoin/rincoin-node/rincoin.conf:/data/rincoin.conf:ro + command: + - rincoind + - -datadir=/data + - -conf=/data/rincoin.conf + - -printtoconsole \ No newline at end of file