Guest User

Untitled

a guest
Nov 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. FROM nginx:1.11
  2. COPY docker-entrypoint.bash /docker-entrypoint
  3. COPY reload.bash /
  4. RUN chmod +x /docker-entrypoint /reload.bash
  5. VOLUME ["/etc/nginx", "/var/log/nginx", "/var/www","/etc/letsencrypt","/etc/ssl"]
  6. ENTRYPOINT ["/docker-entrypoint"]
  7. CMD ["nginx", "-g", "daemon off;"]
Add Comment
Please, Sign In to add comment