docker-compose.yml 321 B

1234567891011121314
  1. version: "3"
  2. services:
  3. serverstatus:
  4. image: stilleshan/serverstatus
  5. container_name: serverstatus
  6. ports:
  7. - 8888:80
  8. - 35601:35601
  9. volumes:
  10. # - ./web:/usr/share/nginx/html
  11. - ./config.json:/ServerStatus/server/config.json
  12. environment:
  13. TZ: Asia/Shanghai
  14. restart: always