Docker-compose实例 Dashdot

github.com

Dashdot中文名字“破折号”,它是一款简单、实用的开源现代服务器仪表盘,主要应用于小型 VPS 和私人服务器(比如说NAS),是一个界面非常漂亮的监控服务器面板!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
version: '3.1'
services:
dashdot:
stdin_open: true
tty: true
restart: unless-stopped
privileged: true
container_name: dashdot
ports:
- '6005:3001'
volumes:
- '/:/mnt/host:ro'
environment:
- DASHDOT_ENABLE_CPU_TEMPS=true
- DASHDOT_OVERRIDE_OS=DS1522+
- DASHDOT_ALWAYS_SHOW_PERCENTAGES=true
image: 'mauricenino/dashdot:latest'
networks:
bridge0:
ipv4_address: 172.20.0.10
networks:
bridge0:
external: true
name: bridge0