From 468fb901172f2534972cc44cd4459f14b3745a98 Mon Sep 17 00:00:00 2001 From: "Kevin J. Lynagh" Date: Mon, 15 Apr 2013 08:49:48 -0700 Subject: [PATCH] install.sh script's dockerd.conf should set docker daemon environment's LANG to en_US.UTF-8. See #355. --- contrib/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/install.sh b/contrib/install.sh index b0a998332e..d7c6e66466 100755 --- a/contrib/install.sh +++ b/contrib/install.sh @@ -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..."