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.
This commit is contained in:
Pedro Machado Santa 2018-04-19 12:47:28 +01:00
parent 8c121c5457
commit 79d4618345

3
.gitignore vendored
View File

@ -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