1234567891011121314151617181920 |
- version: "3.7"
- services:
- nginxipsrv:
- image: nginx:alpine
- ports:
- - "8080:80"
- volumes:
- - ../../../../:/var/www/html
- - ../conf/etc/localtime:/etc/localtime:ro
- - ../conf/nginx/nginxip.conf:/etc/nginx/nginx.conf:ro
- - /nfs/upload:/var/www/html/data/upload
- container_name: "panda-nginxip"
- command: [nginx,'-g','daemon off;']
- extra_hosts:
- - "docker.hostip:172.17.0.1"
- deploy:
- resources:
- limits:
- cpus: '8'
|