Skip to content

Commit

Permalink
Prevent .compose volumes from being doubly included in docker (#1367)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
achantavy authored Oct 11, 2024
1 parent 05916cd commit 810e391
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
build/
*.egg-info/
venv/
.compose
.cache
.local

0 comments on commit 810e391

Please sign in to comment.