Sign inSign up

ajardin/nginx

By ajardin

Updated about 5 years ago

Image
0

4.9K

ajardin/nginx repository overview

Nginx image

Nginx pulls

✨ Features

An image based on nginx:alpine with HTTPS support and custom domains.

🚀 Usage

services:
# [...]
  nginx:
    image: ajardin/nginx:latest
    env_file: ${PROJECT_LOCATION}/var/docker/.env
    ports:
      - 443:443
    volumes:
      # Project files
      - ${PROJECT_LOCATION}:/var/www/html:delegated
      # SSL certificates
      - ${PROJECT_LOCATION}/var/docker/nginx/certs:/etc/nginx/ssl:cached
      # Custom configuration
      - ${PROJECT_LOCATION}/var/docker/nginx/custom.conf:/etc/nginx/conf.d/custom.conf:ro
    depends_on:
      - php
    tty: true
# [...]

Tag summary

Content type

Image

Digest

Size

13.2 MB

Last updated

about 5 years ago

docker pull ajardin/nginx