nginx-reverse-proxy/docker-compose.yml
2024-08-24 18:09:38 +03:00

11 lines
199 B
YAML

version: '3'
services:
nginx:
image: nginx:latest
container_name: nginx-reverse-proxy
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
restart: always