13 lines
349 B
YAML
13 lines
349 B
YAML
version: '3'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
volumes:
|
|
- ./data/conf.d:/etc/nginx/conf.d
|
|
- ./data/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./data/logs:/var/log/nginx
|
|
- ./data/html:/var/www/html
|