Skip to content

Commit ed6c819

Browse files
DDSDerekDDSRem
andauthored
feat: add PUID, PGID, Umask settings to docker image (close #2525 pr #2818)
Co-authored-by: DDSRem <1448139087@qq.com>
1 parent 83fe17c commit ed6c819

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ LABEL MAINTAINER="i@nn.ci"
1010
VOLUME /opt/alist/data/
1111
WORKDIR /opt/alist/
1212
COPY --from=builder /app/bin/alist ./
13-
RUN apk add ca-certificates
13+
COPY entrypoint.sh /entrypoint.sh
14+
RUN apk add ca-certificates bash su-exec
15+
ENV PUID=1000 PGID=1000 UMASK=022
1416
EXPOSE 5244
15-
CMD [ "./alist", "server", "--no-prefix" ]
17+
ENTRYPOINT [ "/entrypoint.sh" ]

entrypoint.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
chown -R ${PUID}:${PGID} /opt/alist/
4+
5+
umask ${UMASK}
6+
7+
exec su-exec ${PUID}:${PGID} ./alist server --no-prefix

0 commit comments

Comments
 (0)