Skip to content

Commit

Permalink
Change default ports
Browse files Browse the repository at this point in the history
  • Loading branch information
lemkeb committed Sep 13, 2019
1 parent 16269b9 commit 6526f13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apk --update add nginx && \
COPY conf/nginx/nginx-nobody-user.conf /etc/nginx/nginx.conf
COPY 2048 ${APP_PATH}

EXPOSE 80
EXPOSE 8080

# Health check option
HEALTHCHECK CMD /usr/bin/nc 127.0.0.1 80 < /dev/null || exit 1
Expand Down
2 changes: 1 addition & 1 deletion conf/nginx/nginx-nobody-user.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ http {
default_type application/octet-stream;

server {
listen 80;
listen 8080;

root /usr/share/nginx/html;
access_log /tmp/access.log;
Expand Down

0 comments on commit 6526f13

Please sign in to comment.