12345678910111213141516171819202122 |
- version: "3.7"
- services:
- nginx:
- image: nginx:alpine
- ports:
- - "8000:80"
- volumes:
- - ../../../../:/var/www/html
- - ../conf/etc/localtime:/etc/localtime:ro
- - ../conf/nginx/nginx_admin.conf:/etc/nginx/nginx.conf:ro
- - ./redmine/:/var/www/html/redmine
- - /nfs/ylupload:/var/www/html/data/upload
- - /nfs/ylmerchant:/var/www/html/merchant
- container_name: "yl-nginx"
- command: [nginx,'-g','daemon off;']
- extra_hosts:
- - "docker.hostip:172.17.0.1"
- deploy:
- resources:
- limits:
- cpus: '8'
|