Files
Docker-Composes/NginxLocal/docker-compose.yml
Alejandro Sarmiento 798a8214a7 NginxLocal
2024-03-05 21:26:01 +01:00

12 lines
231 B
YAML

version: '3.8'
services:
nginx:
image: nginx:latest
container_name: nginx-local
ports:
- "16080:80"
volumes:
- ./html:/usr/share/nginx/html
- ./conf:/etc/nginx/conf.d
restart: unless-stopped