mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-26 17:42:29 +08:00
fix(docker/rootless): entrypoint if executable bit is not set
This commit is contained in:
parent
a1dda3c01a
commit
02fc5214a3
@ -26,7 +26,6 @@ WORKDIR /home/${USER}/app
|
||||
COPY ./dist /home/${USER}/app
|
||||
# Also copy the rootless entrypoint script
|
||||
COPY rootless-entrypoint.sh /home/${USER}/app/
|
||||
RUN chmod +x /home/${USER}/app/rootless-entrypoint.sh
|
||||
RUN rm -rf /home/${USER}/app/node_modules/better-sqlite3
|
||||
COPY --from=builder /usr/src/app/node_modules/better-sqlite3 /home/${USER}/app/node_modules/better-sqlite3
|
||||
RUN chown -R ${USER}:${USER} /home/${USER}
|
||||
@ -45,6 +44,6 @@ ENV TRILIUM_DATA_DIR=/home/${USER}/trilium-data
|
||||
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
||||
|
||||
# Use the entrypoint script
|
||||
CMD /home/${USER}/app/rootless-entrypoint.sh
|
||||
CMD [ "bash", "./rootless-entrypoint.sh" ]
|
||||
|
||||
HEALTHCHECK --start-period=10s CMD node /home/${USER}/app/docker_healthcheck.js
|
||||
|
@ -28,7 +28,6 @@ WORKDIR /home/${USER}/app
|
||||
COPY ./dist /home/${USER}/app
|
||||
# Also copy the rootless entrypoint script
|
||||
COPY rootless-entrypoint.sh /home/${USER}/app/
|
||||
RUN chmod +x /home/${USER}/app/rootless-entrypoint.sh
|
||||
RUN rm -rf /home/${USER}/app/node_modules/better-sqlite3
|
||||
COPY --from=builder /usr/src/app/node_modules/better-sqlite3 /home/${USER}/app/node_modules/better-sqlite3
|
||||
RUN chown -R ${USER}:${USER} /home/${USER}
|
||||
@ -44,6 +43,6 @@ ENV TRILIUM_GID=${GID}
|
||||
ENV TRILIUM_DATA_DIR=/home/${USER}/trilium-data
|
||||
|
||||
# Use the entrypoint script
|
||||
CMD /home/${USER}/app/rootless-entrypoint.sh
|
||||
CMD [ "bash", "./rootless-entrypoint.sh" ]
|
||||
|
||||
HEALTHCHECK --start-period=10s CMD node /home/${USER}/app/docker_healthcheck.js
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
# Rootless entrypoint script for Trilium Notes
|
||||
# Works with both Debian and Alpine-based images
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user