123456789101112131415161718 |
- version: '3.8'
- services:
- nginx:
- container_name: my_nginx
- image: nginx:1.25-alpine
- ports:
- - "${NGINX_PORT:-8877}:80"
- volumes:
- - ./nginx.conf:/etc/nginx/nginx.conf:ro
- - ./element:/usr/share/nginx/html/element2:ro
- - ./v2.cn.vuejs.org:/usr/share/nginx/html/v2.cn.vuejs.org:ro
- restart: always
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost"]
- interval: 30s
- timeout: 10s
- retries: 3
|