Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 343 Bytes

File metadata and controls

20 lines (16 loc) · 343 Bytes

webfatorial/docker-nginx

Nginx extended version: provides a version of nginx to use with php-fpm.

Docker Compose example

www:
    image: webfatorial/nginx
    restart: 'yes'
    ports:
        - "80:80"
        - "443:443"
    volumes:
        - ./www:/var/www/html
        - ./nginx-config:/etc/nginx
    links:
        - fpm