This commit is contained in:
lza_menace
2025-04-11 07:10:25 -07:00
committed by lalanza808
parent 6f0a767717
commit 3f67ff0eb2
3 changed files with 9 additions and 5 deletions

View File

@@ -101,15 +101,19 @@ docker compose logs -f
docker compose logs -f monerod # make logs docker compose logs -f monerod # make logs
``` ```
Navigate to http://localhost:3000 and log into Grafana. Find the `Node Stats` dashboard to get those sweet, sweet graphs. ### Running Locally
If you've installed this on another system you will want to use [SSH tunnels](https://www.ssh.com/ssh/tunneling/example) (local forwarding) to reach Grafana (if not exposing via reverse proxy): Navigate to http://localhost:3000 and find the `Node Stats` dashboard to get those sweet, sweet graphs.
### Running on VPS
If you've installed this on another system you will want to use [SSH tunnels](https://www.ssh.com/ssh/tunneling/example) (local forwarding) to reach Grafana if not running a reverse proxy:
``` ```
ssh <VPS OR SERVER IP> -L 3000:localhost:3000 ssh <VPS OR SERVER IP> -L 3000:localhost:3000
``` ```
Then navigate to http://localhost:3000. Here is what the graph looks like: Then navigate to http://localhost:3000. Here is what the dashboard looks like:
![](static/graf1.png) ![](static/graf1.png)

View File

@@ -148,4 +148,6 @@ services:
- 127.0.0.1:${UNRESTRICTED_PORT:-18083}:18083 # unrestricted rpc - 127.0.0.1:${UNRESTRICTED_PORT:-18083}:18083 # unrestricted rpc
networks: networks:
- tor_net - tor_net
command:
- /entrypoint.sh
<<: *log-config <<: *log-config

View File

@@ -61,8 +61,6 @@ COPY --from=og /tmp/ban_list.txt /ban_list.txt
COPY ./dockerfiles/monerod_entrypoint.sh /entrypoint.sh COPY ./dockerfiles/monerod_entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 18080 EXPOSE 18080
EXPOSE 18081 EXPOSE 18081
EXPOSE 18082 EXPOSE 18082