Skip to content

Instantly share code, notes, and snippets.

@jtr109
Created October 29, 2019 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtr109/60c99a1c0cd7436c528786efd7e87e52 to your computer and use it in GitHub Desktop.
Save jtr109/60c99a1c0cd7436c528786efd7e87e52 to your computer and use it in GitHub Desktop.
Nginx docker-compose
version: '3'
services:
nginx:
image: nginx:1.17.5-alpine
ports:
- 80:80
- 443:443
volumes:
- ./conf.d:/etc/nginx/conf.d
- ./log:/var/log/nginx
- ./html:/usr/share/nginx/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment