Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions compose/bin/docker-compose
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ else
COMPOSE_FILES+=("compose.dev.yaml")
fi

# include compose.override.yaml if present
if [ -f "compose.override.yaml" ]; then
COMPOSE_FILES+=("compose.override.yaml")
fi

# Loop over the list of compose files, and prefix them with -f.
# This ensures paths with spaces aren't split when passed as parameters.
COMPOSE_FILES_PREFIXED=()
Expand Down