25 lines
404 B
Docker
25 lines
404 B
Docker
FROM alpine
|
|
|
|
ARG VERSION
|
|
|
|
|
|
RUN set -xe && \
|
|
apk add --no-cache \
|
|
samba-server \
|
|
samba-common-tools \
|
|
|
|
VOLUME /share
|
|
VOLUME /etc/samba
|
|
|
|
COPY smb.conf /etc/samba/
|
|
|
|
EXPOSE 137/udp 138/udp 139/tcp 445/tcp
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
|
|
|
|
CMD nmbd --daemon && \
|
|
smbd --foreground \
|
|
--log-stdout \
|
|
--no-process-group \
|
|
--configfile /etc/samba/smb.conf
|