Files
coin-manager-new/docker-compose.yml
2026-01-04 17:00:21 +08:00

18 lines
382 B
YAML

version: '3.8'
services:
coin-manager:
build:
context: .
dockerfile: Dockerfile
container_name: coin-manager
ports:
- "10082:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/index.html"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s