27 lines
567 B
YAML
27 lines
567 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
image: registry.boss160.cn/junhong/cmp-admin-web:latest
|
|
container_name: junhong-cmp-web
|
|
restart: unless-stopped
|
|
ports:
|
|
- '3001:80'
|
|
networks:
|
|
- junhong-network
|
|
healthcheck:
|
|
test: ['CMD', 'wget', '--no-verbose', '--tries=1', '--spider', 'http://127.0.0.1:80/health']
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|
|
logging:
|
|
driver: 'json-file'
|
|
options:
|
|
max-size: '10m'
|
|
max-file: '3'
|
|
|
|
networks:
|
|
junhong-network:
|
|
driver: bridge
|