2017-10-20 13:43:12 -04:00
|
|
|
FROM alpine
|
2016-06-16 14:00:37 -04:00
|
|
|
MAINTAINER David Personette <dperson@gmail.com>
|
2015-01-01 23:03:52 -05:00
|
|
|
|
|
|
|
# Install samba
|
2017-10-24 08:26:31 -04:00
|
|
|
RUN apk --no-cache --no-progress upgrade && \
|
2018-04-10 09:58:16 -04:00
|
|
|
apk --no-cache --no-progress add bash samba shadow tini && \
|
2018-01-14 09:11:40 -05:00
|
|
|
adduser -D -G users -H -S -g 'Samba User' -h /tmp smbuser && \
|
2017-10-23 07:15:10 -04: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 && \
|
2018-09-23 15:37:42 -04:00
|
|
|
echo ' vfs objects = acl_xattr catia fruit recycle streams_xattr' \
|
|
|
|
>>$file && \
|
2017-10-23 07:15:10 -04:00
|
|
|
echo ' recycle:keeptree = yes' >>$file && \
|
2019-07-07 01:56:50 -04:00
|
|
|
echo ' recycle:maxsixe = 0' >>$file && \
|
|
|
|
echo ' recycle:repository = .deleted' >>$file && \
|
2017-10-23 07:15:10 -04:00
|
|
|
echo ' recycle:versions = yes' >>$file && \
|
2018-09-23 15:29:02 -04:00
|
|
|
echo '' >>$file && \
|
|
|
|
echo ' # Security' >>$file && \
|
|
|
|
echo ' client ipc max protocol = default' >>$file && \
|
|
|
|
echo ' client max protocol = default' >>$file && \
|
|
|
|
echo ' server max protocol = SMB3' >>$file && \
|
|
|
|
echo ' client ipc min protocol = default' >>$file && \
|
|
|
|
echo ' client min protocol = CORE' >>$file && \
|
|
|
|
echo ' server min protocol = SMB2' >>$file && \
|
|
|
|
echo '' >>$file && \
|
|
|
|
echo ' # Time Machine' >>$file && \
|
|
|
|
echo ' durable handles = yes' >>$file && \
|
|
|
|
echo ' kernel oplocks = no' >>$file && \
|
|
|
|
echo ' kernel share modes = no' >>$file && \
|
|
|
|
echo ' posix locking = no' >>$file && \
|
|
|
|
echo ' fruit:aapl = yes' >>$file && \
|
|
|
|
echo ' fruit:advertise_fullsync = true' >>$file && \
|
|
|
|
echo ' fruit:time machine = yes' >>$file && \
|
|
|
|
echo ' smb2 leases = yes' >>$file && \
|
2019-07-07 11:15:12 -04:00
|
|
|
echo ' aio read size = 0' >>$file && \
|
|
|
|
echo ' aio write size = 0' >>$file && \
|
2017-10-23 07:15:10 -04:00
|
|
|
echo '' >>$file && \
|
2017-10-20 13:43:12 -04:00
|
|
|
rm -rf /tmp/*
|
|
|
|
|
2015-01-22 13:51:56 +01:00
|
|
|
COPY samba.sh /usr/bin/
|
2015-01-01 23:03:52 -05:00
|
|
|
|
2017-10-24 11:28:26 -04:00
|
|
|
EXPOSE 137/udp 138/udp 139 445
|
|
|
|
|
2017-10-20 13:43:12 -04:00
|
|
|
HEALTHCHECK --interval=60s --timeout=15s \
|
2018-11-26 07:04:26 -05:00
|
|
|
CMD smbclient -L '\\localhost' -U '%' -m SMB3
|
2015-01-01 23:03:52 -05:00
|
|
|
|
2018-11-26 07:04:26 -05:00
|
|
|
VOLUME ["/etc", "/var/cache/samba", "/var/lib/samba", "/var/log/samba",\
|
2018-11-26 06:02:08 -05:00
|
|
|
"/run/samba"]
|
2017-10-20 13:43:12 -04:00
|
|
|
|
2018-04-10 09:58:16 -04:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/samba.sh"]
|