Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 400 Bytes

nginx.md

File metadata and controls

19 lines (15 loc) · 400 Bytes

Nginx

The nginx container image is a lightweight and high-performance web server designed to efficiently serve static and dynamic content.

Maintainer: NGINX Docker Maintainers docker-maint@nginx.com

tasks:
  "":
    image: nginx
    volumeMounts:
    - mountPath: /usr/share/nginx/html
      name: nginx.html
volumes:
- hostPath:
    path: volumes/nginx/html
  name: nginx.html