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