{"id":20894858,"url":"https://github.com/stilleshan/serverstatus","last_synced_at":"2025-04-12T22:31:41.201Z","repository":{"id":47954523,"uuid":"239539661","full_name":"stilleshan/ServerStatus","owner":"stilleshan","description":"集成美化主题的 ServerStatus 服务器监控程序 docker 版.更新支持 ARM 架构","archived":false,"fork":false,"pushed_at":"2024-12-07T01:46:38.000Z","size":1550,"stargazers_count":237,"open_issues_count":2,"forks_count":64,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-04T01:46:56.708Z","etag":null,"topics":["serverstatus","serverstatus-docker"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/stilleshan/serverstatus","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stilleshan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-10T15:05:05.000Z","updated_at":"2025-02-10T11:07:32.000Z","dependencies_parsed_at":"2025-01-18T20:46:22.132Z","dependency_job_id":"60517c4a-2996-4df4-a990-d0b3c4e2cb6b","html_url":"https://github.com/stilleshan/ServerStatus","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stilleshan%2FServerStatus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stilleshan%2FServerStatus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stilleshan%2FServerStatus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stilleshan%2FServerStatus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stilleshan","download_url":"https://codeload.github.com/stilleshan/ServerStatus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248640116,"owners_count":21137980,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["serverstatus","serverstatus-docker"],"created_at":"2024-11-18T10:23:13.929Z","updated_at":"2025-04-12T22:31:41.156Z","avatar_url":"https://github.com/stilleshan.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ServerStatus\n## 简介\nServerStatus 在 GitHub 上已经有各种版本,本项目是基于 [ToyoDAdoubi/ServerStatus-Toyo](https://github.com/ToyoDAdoubi/ServerStatus-Toyo) 一键脚本项目,并整合网友制作的[美化主题](https://www.hostloc.com/thread-494384-1-1.html),打包为 docker 镜像,方便一键安装和迁移.\n\u003e *docker image support for X86 and ARM*\n\n![screenshot](https://raw.githubusercontent.com/stilleshan/ServerStatus/master/screenshot.jpg)\n\n## 更新\n**2021-06-06** 更新 docker 镜像同时支持 X86 和 ARM\n\n## 部署\n### docker 部署\n推荐直接 **git clone** 本仓库到服务器 **/root** 目录内.或者手动下载仓库中的 **config.json** 至 **/root/ServerStatus/** 目录内.\n```shell\ncd /root\ngit clone https://github.com/stilleshan/ServerStatus.git\n```\n\n示例 **8888** 端口为 Web 访问端口, **35601** 为客户端通信端口,根据需求自行修改映射端口.注意防火墙需放行此端口.\n```shell\ndocker run -d --name=serverstatus --restart=always \\\n  -p 8888:80 \\\n  -p 35601:35601 \\\n  -v ~/ServerStatus/config.json:/ServerStatus/server/config.json \\\n  stilleshan/serverstatus\n```\n\n### docker compose 部署\n```shell\ncd /root\ngit clone https://github.com/stilleshan/ServerStatus.git\ncd ServerStatus\ndocker-compose up -d\n```\n\n## 使用\n### 访问地址\n```\nhttp://服务器IP:8888\n```\n\u003e 使用域名和 HTTPS 协议可配置 Nginx 反向代理\n\n### 配置\n**config.json** 为服务器端配置文件,默认已经添加示例配置,可以根据示例格式修改,删除或者增加服务器.修改完毕后重启容器.\n```shell\ndocker restart serverstatus\n```\n\n### 自定义前端页面\n上述默认启动命令没有挂载 web 目录,如需自定义修改前端页面,需 **git clone** 本仓库到服务器 **/root** 目录内,执行以下命令挂载 web 目录.\n```shell\ndocker run -d --name=serverstatus --restart=always \\\n  -p 8888:80 \\\n  -p 35601:35601 \\\n  -v ~/ServerStatus/config.json:/ServerStatus/server/config.json \\\n  -v ~/ServerStatus/web:/usr/share/nginx/html \\\n  stilleshan/serverstatus\n```\n\n### 客户端\n客户端需获取客户端服务器的运行情况,建议使用一键脚本安装.可参考图文教程: [服务器安装ServerStatus监控探针教程](https://www.ioiox.com/archives/27.html)\n```shell\nwget -N --no-check-certificate https://raw.githubusercontent.com/stilleshan/ServerStatus/master/status.sh \u0026\u0026 chmod +x status.sh \u0026\u0026 bash status.sh c\n```\n\n## 相关链接\n- GitHub [stilleshan/ServerStatus](https://github.com/stilleshan/ServerStatus)\n- Docker [stilleshan/serverstatus](https://hub.docker.com/r/stilleshan/serverstatus)\n- 原版项目Github [ToyoDAdoubi/ServerStatus-Toyo](https://github.com/ToyoDAdoubi/ServerStatus-Toyo)\n- Dockerfile参考 [cppla/ServerStatus](https://github.com/cppla/ServerStatus)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstilleshan%2Fserverstatus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstilleshan%2Fserverstatus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstilleshan%2Fserverstatus/lists"}