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
413 B
16 lines
413 B
6 years ago
|
version: '3.7'
|
||
|
services:
|
||
|
web:
|
||
|
image: nginx
|
||
|
ports:
|
||
|
- 443:443
|
||
|
volumes:
|
||
|
- /opt/docker/nginx/html:/usr/share/nginx/html
|
||
|
- /opt/docker/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro
|
||
|
- /opt/docker/nginx/conf.d:/etc/nginx/conf.d:ro
|
||
|
- /opt/docker/nginx/logs:/var/log/nginx
|
||
|
- /opt/docker/nginx/cert:/etc/nginx/cert:ro
|
||
|
restart: always
|
||
|
container_name: nginx_master
|
||
|
|