1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/nginx
2015-09-02 11:52:53 +08:00
..
docker-compose.yml use relative local path for volumes 2015-09-02 11:52:53 +08:00
Dockerfile add nginx 2015-07-01 19:57:52 +08:00
README.md add nginx 2015-07-01 19:57:52 +08:00

nginx

Nginx is an open source reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a web server (origin server).

docker-compose.yml

nginx:
  image: vimagick/nginx
  ports:
    - "80:80"
  volumes:
    - nginx/nginx.conf:/etc/nginx/nginx.conf
    - html:/usr/share/nginx/html
  restart: always