Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 217 Bytes

docker-compose.md

File metadata and controls

13 lines (12 loc) · 217 Bytes

Example - docker-compose

web:
  image: fabiocicerchia/nginx-lua
  volumes:
    - ./templates:/etc/nginx/templates
  ports:
    - "8080:80"
  environment:
    - NGINX_HOST=foobar.com
    - NGINX_PORT=80