SSE-Lab/dockerized/first-level-nginx/single_node/compose.yaml

12 lines
263 B
YAML

version: '3.7'
services:
# --- NGINX ---
nginx:
image: nginx:latest
ports:
- '80:80'
- '443:443'
volumes:
- ../configs/node.conf:/etc/nginx/nginx.conf:ro
- ../content/index.html:/var/www/default/index.html