Skip to content

Commit 6e93b6b

Browse files
committed
run service with port 9091
1 parent 6bd76f9 commit 6e93b6b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ RUN apk --update add ca-certificates \
44
curl
55

66
HEALTHCHECK --start-period=2s --interval=5s --timeout=3s \
7-
CMD curl -f http://localhost/health || exit 1
7+
CMD curl -f http://localhost:9091/health || exit 1
88

99
VOLUME /srv
10-
EXPOSE 80
10+
EXPOSE 9091
1111

1212
COPY .docker.json /.filebrowser.json
1313
COPY filebrowser /filebrowser

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ chmod 777 filebrowser
55
./filebrowser config init
66
./filebrowser config set --auth.method=noauth
77
./filebrowser users add admin ${PASSWORD}
8-
./filebrowser -a 0.0.0.0 -p 80 -b /srv
8+
./filebrowser -a 0.0.0.0 -p 9091 -b /srv

0 commit comments

Comments
 (0)