Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ RUN apt-get update && \
RUN ln -sf /dev/stdout /var/log/nginx/access.log
RUN ln -sf /dev/stderr /var/log/nginx/error.log

# Improves performance by declaring an explicit volume that bypasses docker's copy-on-write backend (e.g. aufs)
# and bind-mounts the data directly from the host filesystem.
VOLUME ["/var/cache/nginx"]

EXPOSE 80 443
Expand Down