We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd76f9 commit 6e93b6bCopy full SHA for 6e93b6b
2 files changed
Dockerfile
@@ -4,10 +4,10 @@ RUN apk --update add ca-certificates \
4
curl
5
6
HEALTHCHECK --start-period=2s --interval=5s --timeout=3s \
7
- CMD curl -f http://localhost/health || exit 1
+ CMD curl -f http://localhost:9091/health || exit 1
8
9
VOLUME /srv
10
-EXPOSE 80
+EXPOSE 9091
11
12
COPY .docker.json /.filebrowser.json
13
COPY filebrowser /filebrowser
run.sh
@@ -5,4 +5,4 @@ chmod 777 filebrowser
./filebrowser config init
./filebrowser config set --auth.method=noauth
./filebrowser users add admin ${PASSWORD}
-./filebrowser -a 0.0.0.0 -p 80 -b /srv
+./filebrowser -a 0.0.0.0 -p 9091 -b /srv
0 commit comments