13 lines
252 B
YAML
13 lines
252 B
YAML
version: '3.8'
|
|
services:
|
|
nginx:
|
|
image: nginx:1.21-alpine
|
|
container_name: avz_local_nginx
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
network_mode: host
|
|
restart: unless-stopped
|
|
environment:
|
|
- NGINX_HOST=local
|
|
|