2022-11-20 22:49:32 +08:00
|
|
|
version: '3'
|
2022-11-19 17:16:02 +08:00
|
|
|
services:
|
|
|
|
nginx1.23.1:
|
2022-11-24 14:58:29 +08:00
|
|
|
container_name: nginx1.23.1
|
2022-11-19 17:16:02 +08:00
|
|
|
image: nginx:1.23.1
|
|
|
|
restart: always
|
2022-11-20 21:04:39 +08:00
|
|
|
network_mode: host
|
2022-11-19 17:16:02 +08:00
|
|
|
volumes:
|
|
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
- ./log:/var/log/nginx
|
|
|
|
- ./conf/conf.d:/etc/nginx/conf.d/
|
|
|
|
- ./ssl:/etc/nginx/ssl
|
2022-11-21 16:28:51 +08:00
|
|
|
- ./www:/www/root/
|
2022-11-24 14:58:29 +08:00
|
|
|
- ./root:/usr/share/nginx/html
|
2022-11-19 17:16:02 +08:00
|
|
|
|
2022-11-20 21:04:39 +08:00
|
|
|
|