From 11eb428a88e6a7d331cd77262081078f5ff5cdd2 Mon Sep 17 00:00:00 2001 From: David Personette Date: Mon, 29 Aug 2016 14:45:20 -0400 Subject: [PATCH] Dockerfile set TCP_NODELAY to try and improve performance for non-Linux OSes with broken ack behaviour --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f615345..23d275a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN export DEBIAN_FRONTEND='noninteractive' && \ echo ' printing = bsd' >>/etc/samba/smb.conf && \ echo ' printcap name = /dev/null' >>/etc/samba/smb.conf && \ echo ' disable spoolss = yes' >>/etc/samba/smb.conf && \ + echo ' socket options = TCP_NODELAY' >>/etc/samba/smb.conf && \ echo '' >>/etc/samba/smb.conf && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/*