Skip to content

Commit 810e391

Browse files
author
Alex Chantavy
authored
Prevent .compose volumes from being doubly included in docker (#1367)
docker-compose maps in ./.compose/* in the host source tree to the neo4j container so that neo4j data can be persisted on each container re-run. dev.Dockerfile copies in the contents of everything on the host source tree, and that also includes the contents of .compose, which can get very big. This PR makes sure that we don't include .compose in the dev.Dockerfile so that the size stays manageable.
1 parent 05916cd commit 810e391

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
build/
22
*.egg-info/
33
venv/
4+
.compose
5+
.cache
6+
.local

0 commit comments

Comments
 (0)