smb2 0.12.0

Pure-Rust SMB2/3 client library with pipelined I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM alpine:3.21
RUN apk add --no-cache samba
COPY smb.conf /etc/samba/smb.conf
COPY cycle.sh /cycle.sh
RUN chmod +x /cycle.sh \
    && mkdir -p /shares/public \
    && echo "Flaky server sample file" > /shares/public/sample.txt \
    && chmod -R 777 /shares/public
EXPOSE 445
# No healthcheck — the whole point is the server goes up and down.
CMD ["/cycle.sh"]