You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
448 B
16 lines
448 B
version: "3.7"
|
|
services:
|
|
web:
|
|
image: nginx
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /opt/epdc/nginx/html:/usr/share/nginx/html
|
|
- /opt/epdc/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- /opt/epdc/nginx/conf.d:/etc/nginx/conf.d:ro
|
|
- /opt/epdc/nginx/logs:/var/log/nginx
|
|
restart: always
|
|
container_name: nginx_master
|
|
|