samba/Dockerfile

50 lines
2.1 KiB
Docker
Raw Normal View History

2017-10-20 20:43:12 +03:00
FROM alpine
2016-06-16 21:00:37 +03:00
MAINTAINER David Personette <dperson@gmail.com>
2015-01-02 07:03:52 +03:00
# Install samba
2017-10-24 15:26:31 +03:00
RUN apk --no-cache --no-progress upgrade && \
2018-04-10 16:58:16 +03:00
apk --no-cache --no-progress add bash samba shadow tini && \
2018-01-14 17:11:40 +03:00
adduser -D -G users -H -S -g 'Samba User' -h /tmp smbuser && \
2017-10-23 14:15:10 +03:00
file="/etc/samba/smb.conf" && \
sed -i 's|^;* *\(log file = \).*| \1/dev/stdout|' $file && \
sed -i 's|^;* *\(load printers = \).*| \1no|' $file && \
sed -i 's|^;* *\(printcap name = \).*| \1/dev/null|' $file && \
sed -i 's|^;* *\(printing = \).*| \1bsd|' $file && \
sed -i 's|^;* *\(unix password sync = \).*| \1no|' $file && \
sed -i 's|^;* *\(preserve case = \).*| \1yes|' $file && \
sed -i 's|^;* *\(short preserve case = \).*| \1yes|' $file && \
sed -i 's|^;* *\(default case = \).*| \1lower|' $file && \
sed -i '/Share Definitions/,$d' $file && \
echo ' pam password change = yes' >>$file && \
echo ' map to guest = bad user' >>$file && \
echo ' usershare allow guests = yes' >>$file && \
echo ' create mask = 0664' >>$file && \
echo ' force create mode = 0664' >>$file && \
echo ' directory mask = 0775' >>$file && \
echo ' force directory mode = 0775' >>$file && \
echo ' force user = smbuser' >>$file && \
echo ' force group = users' >>$file && \
echo ' follow symlinks = yes' >>$file && \
echo ' load printers = no' >>$file && \
echo ' printing = bsd' >>$file && \
echo ' printcap name = /dev/null' >>$file && \
echo ' disable spoolss = yes' >>$file && \
echo ' socket options = TCP_NODELAY' >>$file && \
echo ' strict locking = no' >>$file && \
echo ' vfs objects = recycle' >>$file && \
echo ' recycle:keeptree = yes' >>$file && \
echo ' recycle:versions = yes' >>$file && \
echo ' min protocol = SMB2' >>$file && \
echo '' >>$file && \
2017-10-20 20:43:12 +03:00
rm -rf /tmp/*
COPY samba.sh /usr/bin/
2015-01-02 07:03:52 +03:00
2017-10-24 18:28:26 +03:00
EXPOSE 137/udp 138/udp 139 445
2017-10-20 20:43:12 +03:00
HEALTHCHECK --interval=60s --timeout=15s \
2018-09-23 20:29:39 +03:00
CMD smbclient -L '\\localhost' -U '%' -m SMB3
2015-01-02 07:03:52 +03:00
2017-10-20 20:43:12 +03:00
VOLUME ["/etc/samba"]
2018-04-10 16:58:16 +03:00
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/samba.sh"]