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.
20 lines
480 B
20 lines
480 B
version: "3.7"
|
|
services:
|
|
web:
|
|
image: nginx
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- /mnt/epdc/nginx/html:/usr/share/nginx/html
|
|
- /mnt/epdc/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- /mnt/epdc/nginx/conf.d:/etc/nginx/conf.d:ro
|
|
- /mnt/epdc/nginx/logs:/var/log/nginx
|
|
restart: always
|
|
container_name: nginx_master
|
|
networks:
|
|
epdc_network:
|
|
ipv4_address: 172.20.0.4
|
|
networks:
|
|
epdc_network:
|
|
external: true
|
|
|