From 79d461834546a8f3dd056db5290afcd81850bf65 Mon Sep 17 00:00:00 2001 From: Pedro Machado Santa Date: Thu, 19 Apr 2018 12:47:28 +0100 Subject: [PATCH] Add docker compose override file to .gitignore As documented on https://docs.docker.com/compose/extends it's possible to use a docker-compose.override.yml file to override/extend configurations of a docker-compose.yml. As such, this is an excellent way for one to perform own/local tweaks and overrides without changing/impacting project files. This adds a line for it on .gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index f955aa39..982c8363 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,9 @@ /data/* /backups/* +# Ignore compose override file +docker-compose.override.yml + # Ignore custom HTTPD configs /cfg/apache-2.2/*.conf /cfg/apache-2.4/*.conf