-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (32 loc) · 806 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (32 loc) · 806 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: "3"
services:
nodestatus:
image: cokemine/nodestatus
container_name: nodestatus
restart: always
environment:
PORT: 35601
VERBOSE: "false"
PING_INTERVAL: 30
RECONNECT_TIMEOUT: 120
TZ: Asia/Shanghai
USE_PUSH: "true"
USE_IPC: "true"
USE_WEB: "true"
WEB_THEME: "hotaru-theme"
WEB_TITLE: "Server Status"
WEB_SUBTITLE: "Servers' Probes Set up with NodeStatus"
WEB_HEADTITLE: "NodeStatus"
WEB_USERNAME: "admin"
WEB_PASSWORD: ""
WEB_SECRET: ""
PUSH_DELAY: 15
TGBOT_TOKEN: ""
TGBOT_CHATID: ""
TGBOT_PROXY: ""
TGBOT_WEBHOOK: ""
volumes:
- /usr/local/NodeStatus/server:/usr/local/NodeStatus/server
- /tmp:/tmp:rw
ports:
- "35601:35601"