diff --git a/app/dashboard/servers/Servers.tsx b/app/dashboard/servers/Servers.tsx index 5d66b81..2cc8887 100644 --- a/app/dashboard/servers/Servers.tsx +++ b/app/dashboard/servers/Servers.tsx @@ -621,15 +621,37 @@ export default function Dashboard() { {monitoring && ( -
+ To enable monitoring, you need to install Glances on your server. Here's an example Docker Compose configuration: +
+
+ {`services:
+ glances:
+ image: nicolargo/glances:latest
+ container_name: glances
+ restart: unless-stopped
+ ports:
+ - "61208:61208"
+ pid: "host"
+ volumes:
+ - /var/run/docker.sock:/var/run/docker.sock:ro
+ environment:
+ - GLANCES_OPT=-w --disable-webui`}
+
+ + To enable monitoring, you need to install Glances on your server. Here's an example Docker Compose configuration: +
+
+ {`services:
+ glances:
+ image: nicolargo/glances:latest
+ container_name: glances
+ restart: unless-stopped
+ ports:
+ - "61208:61208"
+ pid: "host"
+ volumes:
+ - /var/run/docker.sock:/var/run/docker.sock:ro
+ environment:
+ - GLANCES_OPT=-w --disable-webui`}
+
+