Docker-Compose Openresty
2019-11-18 本文已影响0人
BeRicher
贴代码
version: '3'
services:
nginx:
image: 'openresty/openresty'
restart: always
ports:
- 80:80
- 443:443
environment:
- TZ=Asia/Shanghai
volumes:
- /opt/nginx/conf:/usr/local/openresty/nginx/conf
- /opt/nginx/logs:/usr/local/openresty/nginx/logs
- /opt/nginx/vhost:/etc/nginx/conf.d
- /opt/nginx/site:/etc/nginx/site