Skip to content

Commit

Permalink
Port 80 requires root
Browse files Browse the repository at this point in the history
  • Loading branch information
rednoah committed Jun 19, 2024
1 parent 7872921 commit 28be016
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.webdav
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ ENV PASSWORD ""

ENV ROOT /volume1
ENV HOST localhost
ENV PORT 80
ENV PORT 8080


EXPOSE 80/tcp
EXPOSE 8080

ENTRYPOINT ["/opt/bin/run-as-user", "/opt/bin/httpd"]
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ filebot-projector:

filebot-webdav:
docker build --rm -t filebot-webdav -f Dockerfile.webdav .
docker run -it -v ${PWD}:/volume1 -v data:/data -p 8080:80 filebot-webdav
docker run -it -v ${PWD}:/volume1 -v data:/data -p 8080:8080 filebot-webdav

filebot-alpine:
docker build --rm -t filebot-alpine -f Dockerfile.alpine .
Expand Down

0 comments on commit 28be016

Please sign in to comment.