2022-11-20 22:49:32 +08:00
|
|
|
version: '3'
|
2022-11-19 17:16:02 +08:00
|
|
|
services:
|
2022-11-30 21:40:05 +08:00
|
|
|
openresty1.21.4:
|
|
|
|
image: openresty/openresty:1.21.4.1-3-alpine
|
2022-11-19 17:16:02 +08:00
|
|
|
restart: always
|
2022-11-20 21:04:39 +08:00
|
|
|
network_mode: host
|
2022-11-19 17:16:02 +08:00
|
|
|
volumes:
|
2022-11-30 21:40:05 +08:00
|
|
|
- ./conf/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf
|
2022-11-19 17:16:02 +08:00
|
|
|
- ./log:/var/log/nginx
|
2022-11-30 21:40:05 +08:00
|
|
|
- ./conf/conf.d:/usr/local/openresty/nginx/conf/conf.d/
|
|
|
|
- ./www:/www
|
2022-11-24 14:58:29 +08:00
|
|
|
- ./root:/usr/share/nginx/html
|
2022-12-04 15:59:34 +08:00
|
|
|
labels:
|
|
|
|
createdBy: "apps"
|