From patchwork Wed Oct 16 12:10:13 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 1177846 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46tWNt38DXz9sP7 for ; Wed, 16 Oct 2019 23:11:26 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=that.guru Authentication-Results: ozlabs.org; dkim=fail reason="key not found in DNS" (0-bit key; unprotected) header.d=that.guru header.i=@that.guru header.b="hQSMuNta"; dkim-atps=neutral Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 46tWNt1YsdzDqdh for ; Wed, 16 Oct 2019 23:11:26 +1100 (AEDT) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=that.guru (client-ip=199.181.239.174; helo=relay0174.mxlogin.com; envelope-from=stephen@that.guru; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=that.guru Authentication-Results: lists.ozlabs.org; dkim=fail reason="key not found in DNS" (0-bit key; unprotected) header.d=that.guru header.i=@that.guru header.b="hQSMuNta"; dkim-atps=neutral Received: from relay0174.mxlogin.com (relay0174.mxlogin.com [199.181.239.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 46tWNm3MQ6zDqFC for ; Wed, 16 Oct 2019 23:11:20 +1100 (AEDT) Received: from filter004.mxroute.com (unknown [94.130.183.33]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay0174.mxlogin.com (Postfix) with ESMTPS id BD3EECC6031C; Wed, 16 Oct 2019 07:11:17 -0500 (CDT) Received: from one.mxroute.com (one.mxroute.com [195.201.59.211]) by filter004.mxroute.com (Postfix) with ESMTPS id 5BE6D3F4EB; Wed, 16 Oct 2019 12:11:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=that.guru; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=fpKqmL6xdKYirkOyvo4ZdJArT7m6iReieSHbpJSkahI=; b=hQSMuNtaElxqE71JUH7SYaGN0q kfAsUV3ynfZcu3cKUetpF0SppzNf0HBKzG3lymeO81o0chdRTcYkREb0OhVjImZyBD3Txg2glGlpT 7p/gDz0zRCP1vojPTqEWHeyr94YFSPxAqcu9WQFdFvbF+QPX5eGiYtHLTHOOcF1eZfMBSStQxQvNv 8eudxU03lnopikN8gfy6qT51AF9xFC5mfjXjS86fmEUsKSdWaRCLdN6QtJ71ZtgTSR0jIhx8OdFJY 0XlcWYx2hs9oHVAMesnKcgsNGd8eJSRKw2jcWU2OJnB8i/1MkWKdBdR0/R2DInsvuSbCNe7E96Iq1 yuc3QLbA==; From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH 2/3] docker: Ignore .tox, .backups directories Date: Wed, 16 Oct 2019 13:10:13 +0100 Message-Id: <20191016121014.29201-2-stephen@that.guru> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20191016121014.29201-1-stephen@that.guru> References: <20191016121014.29201-1-stephen@that.guru> MIME-Version: 1.0 X-AuthUser: stephen@that.guru X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" These can be _huge_ which can significantly slow down the startup time. We don't need them so ignore them. Signed-off-by: Stephen Finucane --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git .dockerignore .dockerignore index 216f4ba2..77feb067 100644 --- .dockerignore +++ .dockerignore @@ -1 +1,3 @@ tools/docker/db +.backups +.tox