install.sh script's dockerd.conf should set docker daemon environment's LANG to en_US.UTF-8. See #355.

This commit is contained in:
Kevin J. Lynagh 2013-04-15 08:49:48 -07:00
parent 1ec6c223c9
commit 468fb90117
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ then
echo "Upstart script already exists."
else
echo "Creating /etc/init/dockerd.conf..."
echo "exec /usr/local/bin/docker -d" > /etc/init/dockerd.conf
echo "exec env LANG=\"en_US.UTF-8\" /usr/local/bin/docker -d" > /etc/init/dockerd.conf
fi
echo "Starting dockerd..."