From d98ab8cf1e23dc4fe1578622a1298eddb0b9fe33 Mon Sep 17 00:00:00 2001 From: James McDowell Date: Sun, 16 May 2021 09:11:11 +1000 Subject: [PATCH] Updated dockerignore to prevent the generated database files from being sent to the build context. This was causing an error connected to the docker daemon when issuing `docker-compose up --build`, possibly due to the size or number of files in that folder causing an overflow of sorts --- .dockerignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 3fbb8c079e..79289b3acd 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,5 @@ /docs /handbook -/tools \ No newline at end of file +/tools +/docker-db-data +/.idea \ No newline at end of file