beforeLocal
Some checks failed
Deploy to Server / deploy (push) Failing after 5s

This commit is contained in:
2026-05-05 00:47:39 +00:00
parent fdf2cf3659
commit 70ee32efdd
31 changed files with 1169 additions and 0 deletions

15
mail-sync/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM alpine:latest
RUN apk add --no-cache isync cron python3 ca-certificates bash su-exec tzdata
# Copy configuration template and entrypoint
COPY mbsyncrc.template /root/.mbsyncrc.template
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Create the Maildir directory
RUN mkdir -p /Maildir
ENTRYPOINT ["/entrypoint.sh"]
CMD ["cron", "-f"]