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