mirror of
https://github.com//cppla/ServerStatus
synced 2025-01-12 01:58:28 +08:00
30 lines
695 B
YAML
30 lines
695 B
YAML
version: "3"
|
|
services:
|
|
serverstatus:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: serverstatus_server
|
|
healthcheck:
|
|
test: curl --fail http://localhost:80 || bash -c 'kill -s 15 -1 && (sleep 10; kill -s 9 -1)'
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
container_name: serverstatus
|
|
restart: unless-stopped
|
|
networks:
|
|
serverstatus-network:
|
|
ipv4_address: 172.23.0.2
|
|
volumes:
|
|
- ./server/config.json:/ServerStatus/server/config.json
|
|
- ./web/json:/usr/share/nginx/html/json
|
|
ports:
|
|
- 35601:35601
|
|
- 8080:80
|
|
|
|
networks:
|
|
serverstatus-network:
|
|
ipam:
|
|
config:
|
|
- subnet: 172.23.0.0/24
|