feat(config): Update Dockerfile to use simplified LiteFS ENTRYPOINT

This commit is contained in:
2026-02-08 13:57:43 -08:00
parent f51baf7949
commit ef91b8e9af

View File

@@ -20,5 +20,7 @@ RUN chmod +x /usr/local/bin/register.sh /usr/local/bin/entrypoint.sh
COPY litefs.yml /etc/litefs.yml
# LiteFS becomes the supervisor.
# It will mount the FUSE fs and then execute our entrypoint script.
ENTRYPOINT ["litefs", "mount", "--", "/usr/local/bin/entrypoint.sh"]
# It will mount the FUSE fs and then execute the command defined in litefs.yml's exec section.
ENTRYPOINT ["litefs", "mount"]