Files
one-pipe-h5/docker-compose.prod.yml
huang 43dfc0f9e0
Some checks failed
构建并部署 H5 前端 / build-and-deploy (push) Has been cancelled
自动部署
2026-01-22 17:16:16 +08:00

27 lines
547 B
YAML

version: '3.8'
services:
h5:
image: registry.boss160.cn/junhong/one-pipe-h5:latest
container_name: one-pipe-h5
restart: unless-stopped
ports:
- "3002:80"
networks:
- h5-network
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1/health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
h5-network:
driver: bridge