chore: add back nfs-utils
This commit is contained in:
parent
1866db1969
commit
a44fea0737
2 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ ENV VITE_RESTIC_VERSION=${RESTIC_VERSION} \
|
||||||
|
|
||||||
RUN apk update --no-cache && \
|
RUN apk update --no-cache && \
|
||||||
apk upgrade --no-cache && \
|
apk upgrade --no-cache && \
|
||||||
apk add --no-cache davfs2=1.6.1-r2 openssh-client fuse3 sshfs tini cifs-utils util-linux
|
apk add --no-cache davfs2=1.6.1-r2 openssh-client fuse3 sshfs tini nfs-utils cifs-utils util-linux
|
||||||
|
|
||||||
ENTRYPOINT ["/sbin/tini", "-s", "--"]
|
ENTRYPOINT ["/sbin/tini", "-s", "--"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,9 @@ const createBetterAuth = (secret: string) =>
|
||||||
modelName: "sessionsTable",
|
modelName: "sessionsTable",
|
||||||
},
|
},
|
||||||
plugins: [username({})],
|
plugins: [username({})],
|
||||||
|
advanced: {
|
||||||
|
disableOriginCheck: true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
type Auth = ReturnType<typeof createBetterAuth>;
|
type Auth = ReturnType<typeof createBetterAuth>;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue