12 lines
241 B
YAML
12 lines
241 B
YAML
|
|
version: '2'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- D:\dev\docker\docker-compose\nginx\nginx.conf:/etc/nginx/nginx.conf
|
|
restart: always
|
|
network_mode: host |